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.

classification
Title: imaplib should remove length of literal strings
Type: enhancement Stage: test needed
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: later
Dependencies: Superseder:
Assigned To: Nosy List: Thomas Fenzl, bmoore, terry.reedy
Priority: normal Keywords:

Created on 2009-01-24 21:17 by bmoore, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg80480 - (view) Author: Branden Moore (bmoore) Date: 2009-01-24 21:17
IMAP Literals are a tricky subject.  Currently, if IMAP returns:

* text text text {5}\r\n
12345more text

imaplib will return 2 data items:
[("text text text {5}", '12345'), "more text"]

This forces users of imaplib to then parse out and remove the '{5}' from
the first part of the tuple before appending the literal string.  It
would be nice to have imaplib strip the '{size}' portion of the string
in the first part of the tuple, so that the return value would be:
[("text text text ", '12345'), "more text"]

Though, because this entire response from the IMAP server should be
interpreted as a single line, it would be even better to return a
response such that 'data' is:
[(("text text text ", '12345'), "more text")]

a.k.a., a single 'data' item (only one IMAP response per data item) that
contains either a string or a tuple.  The tuple will contain either more
tuples and/or more strings.  Each sub-tuple here would contain two
strings, text, and the IMAP Literal String.

This would make parsing the responses from imaplib much more simple.  It
demarks obviously where IMAP Literal Strings are, and doesn't require
additional string parsing on the side of the imaplib user.

Thanks!
msg108655 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2010-06-26 00:01
While IMAP is very much a live protocol, I do not know that any of the currently active core developers know much about it. Imaplib is based on the obsolete RFC2060 of Dev 1996, superseded by 3501 in March 2003, with 6 later updates. (I just found all this out to respond here.)

It is written in Python. If you take a look at the code, you will see that 7 people have contributed additions after the initial writing (and others may have contributed unlisted patches). Feel free to submit another by yourself.
msg184586 - (view) Author: Thomas Fenzl (Thomas Fenzl) * Date: 2013-03-19 03:55
that change would require a new interface. 
Since there is a drop-in threaded implementation of imaplib (imaplib2) and a higher-level wrapper (imapclient) which uses imaplib2 if available and falls back to imaplib if not, I think it is better to fully revise the interface, possibly with the planned eventloop in mind.
msg184592 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-03-19 04:45
Since I wrote this, a new method has been added to the IMAP4 class (starttls(ssl_context=None), 3.2) and a new parameter to the IMAP_SSL subclass initialization (3.3). So the module is not dead. 

Thomas is correct that a new method or, more likely, module utility function would be needed to do any transformation of IMAP4 output. Anyone is free now to write their own function. So any proposal would need an argument that there is standard transform that would be useful and used by multiple people.

In the absence of a concrete proposal, and considering the possibility of a new protocal, I am closing this at least for now. Brandon, if you post either a patch or just code for a new function and an explanation of how to use it, and are prepared to defend it, you may reopen.  You might do better to post to python-list or python-idea to see if there are any other users that would like the same transformation you want.
History
Date User Action Args
2022-04-11 14:56:44adminsetgithub: 49295
2013-03-19 04:45:57terry.reedysetstatus: open -> closed
versions: + Python 3.4, - Python 3.2
messages: + msg184592

resolution: later
stage: test needed
2013-03-19 03:55:40Thomas Fenzlsetnosy: + Thomas Fenzl
messages: + msg184586
2010-06-26 00:01:36terry.reedysetversions: + Python 3.2, - Python 2.6, Python 2.5, Python 2.4
nosy: + terry.reedy

messages: + msg108655

type: behavior -> enhancement
2009-01-24 21:17:40bmoorecreate