email module in 2.2

Alex Russell alex at securepipe.com
Sun May 26 03:09:38 EDT 2002


I feel like such an idiot...

after attempting to figure out for HOURS why subtypes weren't being parsed 
correctly, my eye caught the following line in my POP3 access code:

        msg_text = string.join(self.pop.retr(msg_number)[1], "\r\n")

which of course should be:

        msg_text = string.join(self.pop.retr(msg_number)[1], "\n")

Aparently this fixes all my problems (and now I'm MUCH happier with the 
email module =)

I sincerely apologize for wasting everyone's time. I'm so sorry.

-- 
Alex Russell
alex at securepipe.com
alex at netWindows.org



More information about the Python-list mailing list