邮件服务器本域用户不存在时停滞不发送邮件的解决方法

     今天继续测试邮件服务器发送邮件的情况,发现邮件服务器本域用户不存在时一直停滞在邮件正在发送的页面,很长时间也无法发送出去。在网上查询说这是webmail的一个bug,现在bug还没有更改,因此这个问题暂时无法解决。提示如下:
     postfix/smtpd[7663]: NOQUEUE: reject: RCPT from localhost.localdomain[127.0.0.1]: 554 5.1.1 <[email protected]>:
 Recipient address rejected: User unknown in virtual mailbox table; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<l
ocalhost.localdomain>
     为了解决这个问题,查找了大量的资料,并仔细阅读postfix权威指南之后,摸索出一个暂时解决该问题的方法:
    1、增加一个alias表:mysql_virtual_catchall_maps.cf
    #vi /etc/postfix/mysql_virtual_catchall_maps.cf
    输入如下内容:
    user = extmail
    password = extmail
    hosts = localhost
    dbname = extmail
    table = mailbox
    select_field = username where_field = username
    additional_conditions = AND active = '1'
    然后保存退出;
    2、新增另一个别名表:catchall
    #vi /etc/postfix/catchall
    输入如下内容:
    @mail.xxt.cn [email protected]
    注:这里是你的mail域,请务必保持一致,不然无法正常退信。
    3、然后执行postmap catchall
    #postmap catchall
    4、修改/etc/postfix/main.cf中的virtual_alias_maps
    #vi /etc/postfix/main.cf
    编辑如下virtual_alias_maps 改为:
    virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf,mysql:/etc/postfix/mysql_virtual_catchall_maps.cf,hash:/etc/postfix/catchall
    然后保存退出。
    5、让修改的配置文件生效。
    #service postfix reload
    这样发给[email protected]的用户的邮件将会发给[email protected],而普通用户则不影响。
    经测试上面的方法解决了mail服务器发送本域不存在的用户时停滞到正在发送邮件的页面,将邮件发送给catchall,之后有系统发送退信提示。

你可能感兴趣的:(mysql,测试,user,服务器,table,邮件服务器)