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 barry
Recipients
Date 2002-07-26.15:59:18
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=12800

I don't have time to comment except to say that
email.message_from_file() definitely works as the factory
function for mailbox.UnixMailbox.  As proof, I have the
following code in Mailman:

class Mailbox(mailbox.PortableUnixMailbox):
    def __init__(self, fp):
        mailbox.PortableUnixMailbox.__init__(self, fp,
email.message_from_file)

so I know it works. :)

I'll look at the comments Paul's made when I get a chance. 
I'm assigning this bug report to me.
History
Date User Action Args
2007-08-23 14:04:25adminlinkissue586899 messages
2007-08-23 14:04:25admincreate