I am trying to parse emails with python email.parser. When my email contains multiple Received records, email.parser seems like ignoring those records.
Fore example, for input :
...
Received: from localhost (jalapeno [127.0.0.1])
by jmason.org (Postfix) with ESMTP id 5C4E816F6D
for <jm@localhost>; Sun, 6 Oct 2002 22:54:39 +0100 (IST)
Received: from jalapeno [127.0.0.1]
by localhost with IMAP (fetchmail-5.9.0)
for jm@localhost (single-drop); Sun, 06 Oct 2002 22:54:39 +0100 (IST)
...
the output is :
...
Received ::: from localhost (jalapeno [127.0.0.1])
by jmason.org (Postfix) with ESMTP id 5C4E816F6D
for <jm@localhost>; Sun, 6 Oct 2002 22:54:39 +0100 (IST)
Received ::: from localhost (jalapeno [127.0.0.1])
by jmason.org (Postfix) with ESMTP id 5C4E816F6D
for <jm@localhost>; Sun, 6 Oct 2002 22:54:39 +0100 (IST)
...
I am using the following python code
import email
f = open('email.txt', 'r')
data = f.read()
e = email.message_from_string(data)
for i in e.keys():
print i, ':::', e[i]
Is this a bug of email.parser?
Do you suggest any other email parsing python library?