D.配置postfix.
1.主要是main.cf的配置。
| 以下为引用的内容: virtual_alias_maps=mysql:/etc/postfix/mysql_virtual_alias_maps.cf virtual_gid_maps=static:12345 virtual_mailbox_base=/usr/local/virtual virtual_mailbox_domains=mysql:/etc/postfix/mysql_virtual_domains_maps.cf virtual_mailbox_maps=mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf virtual_mailbox_limit=51200000 virtual_minimum_uid=12345 virtual_transport=virtual virtual_uid_maps=static:12345 smtpd_sasl_auth_enable=yes #smtpd_sasl_local_domain=$myhostname smtpd_recipient_restrictions=permit_mynetworkspermit_sasl_authenticatedpermit_aut-h_destinationreject smtpd_sasl_security_options=noanonymous smtpd_client_restrictions=permit_sasl_authenticated broken_sasl_auth_clients=yes |
| 以下为引用的内容: user=postfix password=postfix hosts=localhost dbname=postfix table=alias select_field=goto where_field=username |
| 以下为引用的内容: user=postfix password=postfix hosts=localhost dbname=postfix table=domain select_field=description where_field=domain |
| 以下为引用的内容: user=postfix password=postfix hosts=localhost dbname=postfix table=mailbox select_field=maildir where_field=username |
| 以下为引用的内容: [root@localhostroot]#mkdir/usr/local/virtual [root@localhostroot]#chown-Rpostfix:postfix/usr/local/virtual [root@localhostroot]#chmod-R751/usr/local/virtual |
| 以下为引用的内容: A.mysql>usepostfix Readingtableinformationforcompletionoftableandcolumnnames Youcanturnoffthisfeaturetogetaquickerstartupwith-A Databasechanged mysql>showtables; +----------+ |Tables_in_postfix| +----------+ |alias| |domain| |mailbox| +----------+ 3rowsinset(0.00sec) mysql>INSERTINTOalias(username,goto)VALUES('postmaster@lansemail.com','tester@lansemail.com'); QueryOK,1rowaffected(0.08sec) mysql>INSERTINTOdomain(domain,description)VALUES('lansemail.com','local:');QueryOK,1rowaffected(0.00sec) mysql>INSERTINTOmailbox(username,password,home,maildir,name,domain,create_date,create_time)VALUES('tester','$1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/','/usr/local/virtual/','tester@lansemail.com/','tes-ter','lansemail.com','2003-11-19','21:24:00');QueryOK,1rowaffected(0.03sec)- mysql>select*frommailbox ->; +----+-----+---+----+-----+----+----+--+----+--+-+-+----+------+-------+----------+----+ |userid|username|password|home|maildir|name|uid|gid|quota|domain|create_date|cre-ate_time|change_date|change_time|last_access|passwd_lastchanged|status| +----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+ ||tester|$1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/|/usr/local/virtual/|tester@lansemail.com/|tester-|12345|12345||lansemail.com|2003-11-19|21:24:00|0000-00-00|00:00:00|0|0|1| +----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+ 1rowinset(0.11sec) mysql> |
无法到达以下收件人:
| 以下为引用的内容: |