1

我的网络应用程序的电子邮件通过 gmail 正常,但对 yahoo 失败。检查后缀日志有这个:

Jul  9 14:40:34 rose postfix/smtp[20939]: DAC0CE0009D: to=<my_address@yahoo.com>,
relay=aspmx.l.google.com[173.194.64.26]:25, delay=0.69, delays=0.13/0.01/0.44/0.11, 
dsn=5.1.1, status=bounced (host aspmx.l.google.com[173.194.64.26] said: 550-5.1.1 The
email account that you tried to reach does not exist. Please try 550-5.1.1 
double-checking the recipient's email address for typos or 550-5.1.1 unnecessary spaces.
Learn more at 550 5.1.1 http://support.google.com/mail/bin/answer.py?answer=6596 
b5si14686142oer.37 - gsmtp (in reply to RCPT TO command))

我添加了换行符以提高可读性,它都在一行上。知道为什么它会尝试向谷歌发送@yahoo 地址吗?对我来说似乎超级奇怪。

我的后缀 mc.conf 在顶部有这个,其余的是默认值:

myhostname = myserver.myhost.com
myorigin = $mydomain
relayhost = $mydomain
inet_interfaces = loopback-only
mydestination =

谢谢!

4

1 回答 1

0

我相信这种情况正在发生,因为我的发件人地址是我的域中不存在的地址,而该地址恰好由谷歌应用程序托管。

由于我的 MTA 设置为空客户端,因此它希望将退回邮件转发到发件人地址。

雅虎拒绝了我的电子邮件,因为我的 SPF 记录中有太多的 DNS 条目,这导致了(尝试的)退回邮件。

奇怪的是,即使在调试模式下,postfix 只记录了上面的行。

于 2013-07-11T02:14:53.257 回答