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 petri.lehtinen
Recipients lilydjwg, petri.lehtinen
Date 2012-06-29.19:22:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340997744.08.0.800686493987.issue15222@psf.upfronthosting.co.za>
In-reply-to
Content
Since there's no empty line between the content of mail 2 and the "From " line of mail 3, the body of mail 2 isn't really terminated by a newline. Reading the message confirms this:

>>> import mailbox
>>> mbox = mailbox.mbox('mbox')
>>> mbox[1].get_payload()
'The mail content of mail 2...'

However, according to RFC 4155 this is a bug, as each message in a mbox must be terminated by an empty line.
History
Date User Action Args
2012-06-29 19:22:24petri.lehtinensetrecipients: + petri.lehtinen, lilydjwg
2012-06-29 19:22:24petri.lehtinensetmessageid: <1340997744.08.0.800686493987.issue15222@psf.upfronthosting.co.za>
2012-06-29 19:22:23petri.lehtinenlinkissue15222 messages
2012-06-29 19:22:23petri.lehtinencreate