0

Using GAE mail service to send mails.while sending mail to one of ours. I have issue like as below.

Technical details of permanent failure:Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 5.7.1 rejected content, black listed XXXXXX.appspot.com by dbl.dnsbl. #762 #895 (o7F1ZY023821731400) (state 17).

so we look out spamhaus URL : http://www.spamhaus.org/dbl/removal/record/appspot.com In that url

DBL record for appspot.com The domain name appspot.com is listed on the Spamhaus DBL.

appspot.com has been listed in the DBL because it is a spammer abused URL shortener or redirector.

If you are an authoritative administrator of appspot.com and you have solved the abuse issues you can write to us at dbl-mmxi@spamhaus.org from either abuse@appspot.com or postmaster@appspot.com and inform us of the actions you have taken to clean up the current spammer URLs. Please also inform us of any steps you have taken to prevent future abuse of your shortener/redirector. We will review your request and, at our discretion, remove the listing or respond to your request.

Please help to resolve this issue.

4

2 回答 2

1

您的选择是将问题报告给 Google,以便他们可以尝试从黑名单中删除,或者您可以切换到使用其他服务从 App Engine 发送电子邮件。

我不能保证最好的外部电子邮件发送服务,因为我没有使用它们的经验,但其他人在邮件列表中建议的一些是 Amazon Simple Email Service、Sendgid 和 Message Bus。请参阅此处的讨论

于 2012-08-21T19:14:04.943 回答
0

您应该使用地址 name@appid 从 appengine 发送邮件。appspotmail .com 不是 @appspot.com。以下是发送邮件的详细信息。 https://developers.google.com/appengine/docs/python/mail/sendingmail

从自定义域发送邮件: 如果您从自定义域发送邮件,请确保为该域设置 spf 记录和 dkim。

要了解如何设置 SPF 记录,请查看http://support.google.com/a/bin/answer.py?hl=en&answer=178723

要了解如何设置 DKIM 记录,请查看https://developers.google.com/appengine/docs/python/mail/overview#DKIM

此外,有关发送邮件问题的更多背景信息,请阅读 Jeff Attwood 的这篇精彩文章http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-通过-code.html

回应评论:关于 .appspot.com 域被 SpamHaus 列入黑名单,您能否为您的 appengine 应用程序设置一个域而不是使用 appid.appspot.com 网址,看看这是否解决了您的问题?

于 2012-08-21T09:56:42.227 回答