当前位置: 首页 > 图文教程 > 服务器 > Web服务器 > 在Fedora上建立自己的邮件服务器(4)
1. 主要是main.cf的配置。 smtpd_sasl_auth_enable = yes 2. mysql_virtual_alias_maps.cf 如下 user = postfix 3. mysql_virtual_domains_maps.cf 如下 user = postfix 4. mysql_virtual_mailbox_maps.cf 如下 user = postfix |
七、测试端口25
| A. mysql> use postfix Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> show tables; +----------+ | Tables_in_postfix | +----------+ | alias | | domain | | mailbox | +----------+ 3 rows in set (0.00 sec) mysql> INSERT INTO alias (username,goto) VALUES ('[email protected]','[email protected]'); Query OK, 1 row affected (0.08 sec) mysql> INSERT INTO domain (domain,description) VALUES ('lansemail.com','local:'); Query OK, 1 row affected (0.00 sec) mysql> INSERT INTO mailbox (username,password,home,maildir,name,domain,create_date,create_time) VALUES('tester','$1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/','/usr/local/virtual/','[email protected]/','tester','lansemail.com','2003-11-19','21:24:00'); Query OK, 1 row affected (0.03 sec) mysql> select * from mailbox -> ; +----+-----+---+----+-----+----+----+--+----+--+-+-+----+------+-------+----------+----+ | userid | username | password | home | maildir | name | uid | gid | quota | domain | create_date | create_time | change_date | change_time | last_access | passwd_lastchanged | status | +----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+ | | tester | $1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/ | /usr/local/virtual/ | [email protected]/ | tester | 12345 | 12345 | | lansemail.com | 2003-11-19 | 21:24:00 | 0000-00-00 | 00:00:00 | 0 | 0 | 1 | +----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+ 1 row in set (0.11 sec) mysql> |
这里用的username为tester,只是用来测试端口用的,正式使用一定要用全名[email protected].
否则信件收不
评论 (0) All