类似于Gmail. Any way to retrieve emails sent to my Gmail Apps domain email that bounced?。
我们有一个google app for work gmail,它没有收到来自Zapier的电子邮件(通过另外两个服务器路由,其中一个是mailgun,错误为605 )
这个和另一个之间的区别是,我们已经检查了我们的MX记录(它们指向google服务器),google技术人员帮助我们检查了这一点,但无法提供答案。在跟进了三个团队之后,我来到stack寻求帮助。
附件是代码。
{
"severity": "permanent",
"tags": [],
"delivery-status": {
"message": null,
"code": 605,
"description": "Not delivering to previously bounced address",
"session-seconds": 0
},
"envelope": {
"targets": "radub@nwwpros.com",
"transport": "smtp",
"sender": "contact@zapier.com"
},
"recipient-domain": "nwwpros.com",
"id": "Y0wp1sUWRs2aBtLZYJlvOg",
"campaigns": [],
"reason": "suppress-bounce",
"user-variables": {},
"flags": {
"is-routed": null,
"is-authenticated": true,
"is-system-test": false,
"is-test-mode": false
},
"log-level": "error",
"timestamp": 1444147226.022885,
"message": {
"headers": {
"to": "radub@nwwpros.com",
"message-id": "20151006160014.2675.4025@zapier.com",
"from": "Zapier <contact@zapier.com>",
"subject": "[ALERT] Possible error on your \"Ask them how we did\" Zap!"
},
"attachments": [],
"recipients": [
"radub@nwwpros.com"
],
"size": 42617
},
"recipient": "radub@nwwpros.com",
"event": "failed"
}发布于 2016-04-24 04:17:07
我相当确定Mailgun的605错误代码意味着Mailgun在他们那端拦截了消息,甚至没有尝试将其发送到Google。
所以你不能在你的Google Apps中检查任何东西来查找或解决这个问题。
Mailgun的解释(来自你的错误)是“不能投递到之前退回的地址”。这意味着基于过去的退回,你的“收件人”地址会被列入Zapier邮箱账户的永久黑名单中。如果您的地址现在可以再次交付,Zapier可以将您从邮件枪仪表板的“抑制”下的邮件枪禁止列表中删除,或使用邮件枪的bounce suppression API。
https://stackoverflow.com/questions/33554188
复制相似问题