post调用入站邮件处理程序的方法时发生错误。
File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/ext/webapp/mail_handlers.py", line 70, in post self.receive(mail.InboundEmailMessage(self.request.body))
最简单的解决方案是
post在您自己的处理程序中覆盖该方法以捕获错误:
import loggingfrom google.appengine.ext.webapp.mail_handlers import InboundMailHandlerclass MyInboundMailHandler(InboundMailHandler): def post(self): try: super(MyInboundMailHandler, self).post() except LookupError as ex: logging.warning('Could not process message because %s.', ex) def receive(self, mail_message): # Process message
如果不想丢失消息,可以创建并注册自定义
iso-8859-8-i编解码器。这似乎不是一个有据可查的过程,但是这些问题提供了一些提示:
如何正确创建自定义文本编解码器?
自定义Python Charmap编解码器
如何在python中编写自定义编码以清理数据?
并且标准库的iso-8859-8编码提供了一个很好的模板。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)