psa.mail_aliases
Overview
The mail_aliases table contains information about e-mail accounts which have aliases.
Column Descriptions
id – primary key that is automatically incremented
mn_id – links to id in mail table
alias – e-mail account alias
Table Structure
CREATE TABLE `mail_aliases` ( `id` int(10) unsigned NOT NULL auto_increment, `mn_id` int(10) unsigned NOT NULL default '0', `alias` varchar(245) character set ascii NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `mn_id` (`mn_id`,`alias`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1