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 endolith, petri.lehtinen, r.david.murray
Date 2012-06-21.18:51:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340304708.62.0.545593061621.issue13698@psf.upfronthosting.co.za>
In-reply-to
Content
I'm a little concerned about backwards compatibility. Someone might get upset if extra >'s start appearing in the messages when they read the mailbox contents with an application that uses the mboxo format.

A little analysis on the possible corruptions that happen with these formats:

- When the mailbox is both read and written using the mboxo format, lines starting with "From " are changed to ">From ".

- When the mailbox is both read and written using the mboxrd format, no corruption happens.

- If the mailbox is written using the mboxo format and read using the mboxrd format, lines that were meant to start with ">From " are changed to "From ". So we essentially get a sligthly different corruption.

- If the mailbox is written using the mboxrd format and read using the mboxo format, lines that were meant to start with ">From " are changed to ">>From ". This is a new type of corruption.
History
Date User Action Args
2012-06-21 18:51:48petri.lehtinensetrecipients: + petri.lehtinen, endolith, r.david.murray
2012-06-21 18:51:48petri.lehtinensetmessageid: <1340304708.62.0.545593061621.issue13698@psf.upfronthosting.co.za>
2012-06-21 18:51:48petri.lehtinenlinkissue13698 messages
2012-06-21 18:51:47petri.lehtinencreate