python email.message_from_string()解析问题

时间:2013-08-18 02:47:50

标签: python parsing email

我的设置使用fetchmail从Gmail中提取电子邮件,邮件由procmail处理并传递给python脚本。

当我使用email.message_from_string()时,生成的对象不会被解析为电子邮件对象。 get_payload()将电子邮件的标题/正文/有效内容文本作为单个文本blob返回。

这是它返回的文字:

From example@gmail.com  Sat Aug 17 19:20:44 2013
>From example  Sat Aug 17 19:20:44 2013
MIME-Version: 1.0
Received: from ie-in-f109.1e100.net [74.125.142.109]
    by VirtualBox with IMAP (fetchmail-6.3.21)
    for <example@localhost> (single-drop); Sat, 17 Aug 2013 19:20:44 -0700 (PDT)
Received: by 10.70.131.110 with HTTP; Sat, 17 Aug 2013 19:20:42 -0700 (PDT)
Date: Sat, 17 Aug 2013 19:20:42 -0700
Delivered-To: example@gmail.com
Message-ID: <CAAsp4m0GBeVg80-ryFgNvNNAj_QPguzbX3DqvMSx-xSGZM18Pw@mail.gmail.com>
Subject: test 19:20
From: example <example@gmail.com>
To: example <example@gmail.com>
Content-Type: multipart/alternative; boundary=001a1133435474449004e42f7861

--001a1133435474449004e42f7861
Content-Type: text/plain; charset=ISO-8859-1

19:20

--001a1133435474449004e42f7861
Content-Type: text/html; charset=ISO-8859-1

<div dir="ltr">19:20</div>

--001a1133435474449004e42f7861--

我的代码:

full_msg = sys.stdin.read()
msg = email.message_from_string(full_msg)
msg['to']          # returns None
msg.get_payload()  # returns the text above

让Python正确理解电子邮件我缺少什么?

我从these questions看到我可能无法在线路的某处获得正确的电子邮件标题,但我无法确认。那个“&gt;”第2行不是拼写错误:它出现在文本中。

1 个答案:

答案 0 :(得分:1)

无论“&gt;”就像你说的那样“在文本中”,无论那意味着什么 - 这都是错的。删除此字符后:

  

>python test.py <input.txt
  example <example@gmail.com>
  [<email.message.Message instance at 0x02810288>,   <email.message.Message instance at 0x02810058>]

所以错误不是解析消息,而是在“&gt;”中角色以某种方式腐蚀你的电子邮件文本。