2015-11-05 101 views
1

类似于Gmail. Any way to retrieve emails sent to my Gmail Apps domain email that bounced?Gmail - 通过任何方式我们知道我们收到的电子邮件是否会弹出?

我们有未收到Zapier电子邮件(通过其他两台服务器,其中一个是mailgun路由,具有605错误)工作的Gmail

这个和其他的区别一个谷歌应用程序是我们检查了我们的MX记录(它们指向Google服务器),谷歌技术人员帮助我们检查了这一点,但无法提供答案。在跟进了三支队伍之后,我来堆叠寻求帮助。

附上是代码。

{ 
    "severity": "permanent", 
    "tags": [], 
    "delivery-status": { 
    "message": null, 
    "code": 605, 
    "description": "Not delivering to previously bounced address", 
    "session-seconds": 0 
    }, 
    "envelope": { 
    "targets": "[email protected]", 
    "transport": "smtp", 
    "sender": "[email protected]" 
    }, 
    "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": "[email protected]", 
     "message-id": "[email protected]", 
     "from": "Zapier <[email protected]>", 
     "subject": "[ALERT] Possible error on your \"Ask them how we did\" Zap!" 
    }, 
    "attachments": [], 
    "recipients": [ 
     "[email protected]" 
    ], 
    "size": 42617 
    }, 
    "recipient": "[email protected]", 
    "event": "failed" 
} 

回答

2

我相当肯定Mailgun的605错误代码意味着Mailgun在他们的最后阻止邮件,甚至没有尝试将其发送给Google。

因此,您无法检查您的Google Apps来查找或解决问题。

Mailgun的解释(从你的错误)是“没有交付到以前反弹的地址”。这意味着,根据过去的反弹,您的“收件人”地址位于Mailgun的永久封锁列表中,用于Zapier的Mailgun帐户。如果您的地址现在可以再次交付,Zapier可以将您从“Suppressions”下的Mailgun仪表板中的Mailgun抑制列表中删除,或使用Mailgun的bounce suppression API

+0

[在搜索Mailgun的6xx“SMTP”错误代码列表时遇到了您的问题。还没有找到,但我认为我已经解码了“605”。] – medmunds

相关问题