0

我正在尝试获取准系统应用程序引擎应用程序来处理传入的电子邮件。我遵循了接收电子邮件教程,并且我的代码非常少。

但是,当我发送电子邮件说whatever@myapplication.appspot.com 时,谷歌在它到达我的应用程序之前拒绝了它:

完全无法传送给下列收件人:

whatever@myapplication.appspot.com

永久失败的技术细节:Google 试图传递您的邮件,但被收件人域拒绝。

这是我的 app.yaml

application: myapplication
version: 1
runtime: python27
api_version: 1
threadsafe: false

handlers:
- url: /_ah/mail/.+ 
  script: handle_incoming_email.py 

- url: /.*
  script: myapplication.app

inbound_services:
- mail

和 handle_incoming_email.py 取自教程:

import logging, email
from google.appengine.ext import webapp 
from google.appengine.ext.webapp.mail_handlers import InboundMailHandler 
from google.appengine.ext.webapp.util import run_wsgi_app

class LogSenderHandler(InboundMailHandler):
    def receive(self, mail_message):
        logging.info("Received a message from: " + mail_message.sender)

知道为什么电子邮件被拒绝吗?

4

1 回答 1

3

您似乎错过login: admin了 yaml 文件。

whatever@myapplication.appspotmail.com不是whatever@myapplication.appspot.com

于 2012-06-30T16:14:31.143 回答