后缀:禁用本地邮件传递

每当我发送“root”邮件时,我都希望它被转发到[email protected](而不是本地发送)。

但是,我一直这样做:

Feb 9 17:41:54 botmaster postfix/smtp[29969]: B6E0B808F5: to=<[email protected]>, relay=none, delay=0.01, delays=0.01/0/0.01/0, dsn=5.4.6, status=bounced (mail for botmaster.corp.flatturtle.com loops back to myself) 

这是我的main.cf:

 # See /usr/share/postfix/main.cf.dist for a commented, more complete version # Debian specific: Specifying a file name will cause the first # line of that file to be used as the name. The Debian default # is /etc/mailname. #myorigin = /etc/mailname smtpd_banner = $myhostname ESMTP $mail_name (by FlatTurtle) biff = no # appending .domain is the MUA's job. append_dot_mydomain = no # Uncomment the next line to generate "delayed mail" warnings #delay_warning_time = 4h readme_directory = no # TLS parameters smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key smtpd_use_tls=yes smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for # information on enabling SSL in the smtp client. myhostname = mx.flatturtle.com #alias_maps = hash:/etc/aliases alias_database = hash:/etc/aliases myorigin = /etc/mailname local_transport = error:local delivery is disabled mydestination = localhost relayhost = mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 172.27.0.0/18 85.12.6.130/32 #mailbox_command = procmail -a "$EXTENSION" mailbox_size_limit = 0 recipient_delimiter = + inet_interfaces = all relay_domains = /home/mx/postfix_transport unknown_local_recipient_reject_code = 550 smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination, reject_unauth_pipelining, reject_rbl_client sbl-xbl.spamhaus.org, check_policy_service unix:private/postgrey, permit 

有几种方法来禁用本地交付,但他们似乎没有工作(或至less,我不断得到这个消息)。

挖mx flatturtle.com:

 flatturtle.com. 14679 IN MX 30 mx.flatturtle.com. flatturtle.com. 14679 IN MX 10 mail.flatturtle.com. 

挖mx.flatturtle.com:

 mx.flatturtle.com. 604800 IN CNAME mail2.rootspirit.com. mail2.rootspirit.com. 21600 IN CNAME one.rootspirit.com. one.rootspirit.com. 21600 IN A 95.211.44.129 

挖mail.flatturtle.com:

 mail.flatturtle.com. 444387 IN CNAME mail.rootspirit.com. mail.rootspirit.com. 10265 IN A 85.12.6.130 

dig flatturtle.com:

 flatturtle.com. 14594 IN A 85.12.6.130 

挖botmaster.corp.flatturtle.com:

 botmaster.corp.flatturtle.com. 4680 IN A 95.211.44.129 

“邮件循环回自己”只有一个原因:postfix发送邮件到它负责的收件人域,例如RCPT TO:[email protected],而$ myhostname是example.org的MX。

没有configuration来解决这个问题,因为它是你configuration的

将根的别名添加到不在您的后缀框上的某处,例如:

 root: [email protected] 

Postfix不允许发送电子邮件到SMTP标题中具有相同myhostname的目标SMTP服务器。 然后,您必须将当前myhostname设置为backup.example.org或其他。

myhostname是机器名称,为了避免这个问题,您可以将MX服务器名称设置为“dexter.example.org”,并将备份服务器名称设置为“deedee.example.org”。 RFC 1178说'使用主题名称'。

我通过在名称服务器上创build一个新域名find了一个解决方法:“botmaster.corp.flatturtle.com”。

MXlogging指向另一个SMTP服务器。

因此,邮件根目录(添加@ botmaster.corp.flatturtle.com域名)被转发并正确传送。