我有一个 Postfix/Dovecot 电子邮件服务器,它无法向某些地址发送电子邮件。以下是它的示例:
<[email protected]>: host mail.da.net.ua[91.213.154.4] said: 450
4.7.1 Client host rejected: cannot find your hostname, [128.199.39.109]
(in reply to RCPT TO command)
以下是我的 etc/postfix/main.cf 中的相关摘录(我认为):
smtpd_recipient_restrictions = reject_unknown_recipient_domain,
reject_unauth_pipelining, permit_mynetworks,
permit_sasl_authenticated, reject_unauth_destination
以下是我的 IP 的挖掘输出:
$ dig -x 128.199.39.109
; <<>> DiG 9.8.4-rpz2+rl005.12-P1 <<>> -x 128.199.39.109
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 61194
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;109.39.199.128.in-addr.arpa. IN PTR
;; AUTHORITY SECTION:
39.199.128.in-addr.arpa. 1799 IN SOA ns1.digitalocean.com. hostmaster.39.199.128.in-addr.arpa. 1419274767 10800 3600 604800 1800
;; Query time: 127 msec
;; SERVER: 8.8.4.4#53(8.8.4.4)
;; WHEN: Tue Dec 23 19:08:05 2014
;; MSG SIZE rcvd: 112
我的域名是:
$ dig MX btcontract.com +short @ns1.digitalocean.com
50 mail.btcontract.com.
这种奇怪行为的原因是什么?我该如何解决它?
答案1
您需要一个解析为发送服务器主机名的 PTR 记录128.199.39.109
。可能还需要查看您域名的 SPF 记录。