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 janssen
Recipients barry, christian.heimes, donmez, draghuram, exarkun, janssen, loewis, nnorwitz, rtmq, vstinner
Date 2008-10-14.15:57:10
SpamBayes Score 1.8963942e-11
Marked as misclassified No
Message-id <4b3e516a0810140857l740fa794m7277424cd05f7b3a@mail.gmail.com>
In-reply-to <1223983667.47.0.195770788025.issue1210@psf.upfronthosting.co.za>
Content
Victor, what kind of content have you tried this with?  For instance, have
you passed unencoded (Content-Transfer-Encoding: binary) binary data through
it, by mailing a JPEG, for instance?  These things are strings really only
at the application level; the data is still bytes.  In addition, the use of
Latin-1 goes against the explicit directives of the IMAP group, doesn't it?
They're pushing UTF-8.

Bill

On Tue, Oct 14, 2008 at 4:27 AM, STINNER Victor <report@bugs.python.org>wrote:

>
> STINNER Victor <victor.stinner@haypocalc.com> added the comment:
>
> Here is a patch for imaplib:
>  - add encoding attribute to IMAP4 class (as ftplib and see also issue
> 3727 for my poplib patch)
>  - use makefile('r', encoding=self.encoding) instead of a binary file
> (mode='rb')
>  - remove duplicate code in IMAP4_SSL
>
> I choosed ISO-8859-1 as the default charset. I tested the library on
> my local IMAP4 server using IMAP4 and IMAP4_SSL classes. But the
> library needs more unit tests as done for poplib.
>
> ----------
> keywords: +patch
> nosy: +haypo
> Added file: http://bugs.python.org/file11786/imaplib_unicode.patch
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue1210>
> _______________________________________
>
Files
File name Uploaded
unnamed janssen, 2008-10-14.15:57:08
History
Date User Action Args
2008-10-14 15:57:12janssensetrecipients: + janssen, loewis, barry, nnorwitz, exarkun, vstinner, draghuram, christian.heimes, donmez, rtmq
2008-10-14 15:57:11janssenlinkissue1210 messages
2008-10-14 15:57:10janssencreate