[issue5305] imaplib should support international mailbox names

2018-04-21 Thread Matej Cepl
Change by Matej Cepl : -- nosy: +mcepl ___ Python tracker ___ ___ Python-bugs-list mailing

[issue5305] imaplib should support international mailbox names

2018-04-06 Thread Alexander Harkness
Alexander Harkness added the comment: ssu -- nosy: +bearbin ___ Python tracker ___ ___

[issue5305] imaplib should support international mailbox names

2015-08-06 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Ping. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5305] imaplib should support international mailbox names

2015-07-22 Thread Александр Цамутали
Changes by Александр Цамутали asts...@yandex.ru: -- type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___ ___

[issue5305] imaplib should support international mailbox names

2015-04-21 Thread Jean-Paul Calderone
Changes by Jean-Paul Calderone jean-p...@clusterhq.com: -- nosy: -exarkun ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___ ___

[issue5305] imaplib should support international mailbox names

2014-10-10 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: First step is to provide mUTF-7 in Python 3.5. Then we can try to update imaplib. I am specially worried about the points cfraire raises in http://bugs.python.org/issue5305#msg151859. Lets see. -- dependencies: +IMAP4 UTF-7 support

[issue5305] imaplib should support international mailbox names

2014-10-10 Thread C Fraire
C Fraire added the comment: the twisted imap API is problematic for imaplib because twisted seems to expect its arguments to already be Python unicode. Could you elaborate on this? As far as I can tell, it works fine: I wasn't addressing encode/decode specifically. Both twisted and

[issue5305] imaplib should support international mailbox names

2014-10-09 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: the twisted imap API is problematic for imaplib because twisted seems to expect its arguments to already be Python unicode. Could you elaborate on this? As far as I can tell, it works fine: import twisted.mail.imap4 print uHello,

[issue5305] imaplib should support international mailbox names

2014-10-09 Thread Hiroaki Kawai
Hiroaki Kawai added the comment: the twisted imap API is problematic for imaplib because twisted seems to expect its arguments to already be Python unicode. Could you elaborate on this? As far as I can tell, it works fine: twisted imap4-utf-7 seems to be improved in this 2 years. :-)

[issue5305] imaplib should support international mailbox names

2014-03-29 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Or a new encoder/decoder in codecs module. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___ ___

[issue5305] imaplib should support international mailbox names

2014-03-28 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- nosy: +jcea versions: +Python 3.5 -Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___

[issue5305] imaplib should support international mailbox names

2014-03-28 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Being bitten by this today. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___ ___ Python-bugs-list

[issue5305] imaplib should support international mailbox names

2014-03-28 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Point 2 of cfraire message is a big issue. What about leaving this problem to the library user simply providing two helper functions in the module to encode/decode mUTF-7?. -- ___ Python tracker

[issue5305] imaplib should support international mailbox names

2013-12-12 Thread Daniël van Eeden
Changes by Daniël van Eeden launch...@myname.nl: -- nosy: +dveeden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___ ___ Python-bugs-list

[issue5305] imaplib should support international mailbox names

2012-01-23 Thread C Fraire
C Fraire cfra...@yahoo.com added the comment: I've used the PloneMailList implementation in another project. It works well to add 'imap4-utf-7' as codec. The twisted imap implementation seems to have been updated to properly support non-printable ASCII, but the twisted imap API is problematic

[issue5305] imaplib should support international mailbox names

2011-11-23 Thread Babak M
Babak M babak...@gmail.com added the comment: There's a working implementation of this in PloneMailList. http://svn.plone.org/svn/collective/mxmImapClient/trunk/imapUTF7.py -- nosy: +BabakM ___ Python tracker rep...@bugs.python.org

[issue5305] imaplib should support international mailbox names

2011-03-24 Thread Александр Цамутали
Александр Цамутали asts...@yandex.ru added the comment: So noone is working on this issue ATM? -- nosy: +astsmtl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5305 ___

[issue5305] imaplib should support international mailbox names

2011-01-27 Thread Hiroaki Kawai
Hiroaki Kawai hiroaki.ka...@gmail.com added the comment: twisted's code does not work good for \t, \r, \n, those characters must encoded in modified base64 form according to RFC 3501. -- nosy: +Hiroaki.Kawai ___ Python tracker rep...@bugs.python.org

[issue5305] imaplib should support international mailbox names

2009-02-26 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: The IMAP4rev1 specification allows for non-ASCII mailbox names using a modified UTF-7 encoding UTF-7 already sounds like something horrible for me, but a *modified* UTF-7 encoding is something a little bit more strange for me.

[issue5305] imaplib should support international mailbox names

2009-02-26 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@divmod.com added the comment: UTF-7 already sounds like something horrible for me, but a *modified* UTF-7 encoding is something a little bit more strange for me. Why not reusing directly UTF-7. UTF-7 wasn't horrible for its time, but its time has very likely

[issue5305] imaplib should support international mailbox names

2009-02-20 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@divmod.com added the comment: IMAP4 UTF-7 is implemented in Twisted - http://twistedmatrix.com/trac/browser/trunk/twisted/mail/imap4.py#L5385, http://twistedmatrix.com/trac/browser/trunk/twisted/mail/test/test_imap.py#L58. Feel free to re-use any of that code that

[issue5305] imaplib should support international mailbox names

2009-02-20 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: I don't have a good understanding of imaplib; if you think it's appropriate to provide the conversion through two functions, I trust you. ___ Python tracker rep...@bugs.python.org

[issue5305] imaplib should support international mailbox names

2009-02-19 Thread James Henstridge
James Henstridge ja...@jamesh.id.au added the comment: I'll have a go at implementing the algorithm. It looks like the modifications to UTF-7 are large enough that you can't do a search and replace on the output of the existing UTF-7 codec, so it'll probably require new code. Would

[issue5305] imaplib should support international mailbox names

2009-02-17 Thread James Henstridge
New submission from James Henstridge ja...@jamesh.id.au: The IMAP4rev1 specification allows for non-ASCII mailbox names using a modified UTF-7 encoding (section 5.1.3 of RFC 2060 or 3501). However, the imaplib routines taking a mailbox name just pass the string straight through without any