This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author customdesigned
Recipients
Date 2003-08-25.03:17:52
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Attached is a test message that the email module can't
even read in andd write back out.  It drops a whole
section of headers for the message/rfc822 part.  The
old email modules handle this message correctly.

Let me clarify the problem with a short test:

------te.py--------
import email
import sys

msg = email.message_from_file(sys.stdin)
sys.stdout.write(msg.as_string())
-------------------
$ python2 te.py <test8 >test8.out
$ diff test8 test8.out
.... lots of differences that shouldn't be there ....
History
Date User Action Args
2007-08-23 14:16:24adminlinkissue794458 messages
2007-08-23 14:16:24admincreate