/head: changeset 91
Updated read-only support
This commit is contained in:
parent
097d30e987
commit
f8c2be1df7
@ -1,3 +1,15 @@
|
|||||||
|
2002-07-09 20:24 jgoerzen
|
||||||
|
|
||||||
|
* debian/changelog, offlineimap/version.py: Updated for 2.0.7
|
||||||
|
|
||||||
|
2002-07-09 20:24 jgoerzen
|
||||||
|
|
||||||
|
* offlineimap/imaplib.py: Updated read-only support
|
||||||
|
|
||||||
|
2002-07-09 20:18 jgoerzen
|
||||||
|
|
||||||
|
* ChangeLog: Updated for 2.0.6
|
||||||
|
|
||||||
2002-07-09 20:17 jgoerzen
|
2002-07-09 20:17 jgoerzen
|
||||||
|
|
||||||
* offlineimap.conf, offlineimap.py, debian/changelog,
|
* offlineimap.conf, offlineimap.py, debian/changelog,
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
offlineimap (2.0.7) unstable; urgency=low
|
||||||
|
|
||||||
|
* Fixed imaplib.py to work better with read-only folders.
|
||||||
|
|
||||||
|
-- John Goerzen <jgoerzen@complete.org> Tue, 9 Jul 2002 20:24:21 -0500
|
||||||
|
|
||||||
offlineimap (2.0.6) unstable; urgency=low
|
offlineimap (2.0.6) unstable; urgency=low
|
||||||
|
|
||||||
* Added support for holdconnectionopen and keepalive. This feature
|
* Added support for holdconnectionopen and keepalive. This feature
|
||||||
|
@ -569,10 +569,7 @@ class IMAP4:
|
|||||||
# Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY')
|
# Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY')
|
||||||
self.untagged_responses = {} # Flush old responses.
|
self.untagged_responses = {} # Flush old responses.
|
||||||
self.is_readonly = readonly
|
self.is_readonly = readonly
|
||||||
if readonly is not None:
|
name = 'SELECT'
|
||||||
name = 'EXAMINE'
|
|
||||||
else:
|
|
||||||
name = 'SELECT'
|
|
||||||
typ, dat = self._simple_command(name, mailbox)
|
typ, dat = self._simple_command(name, mailbox)
|
||||||
if typ != 'OK':
|
if typ != 'OK':
|
||||||
self.state = 'AUTH' # Might have been 'SELECTED'
|
self.state = 'AUTH' # Might have been 'SELECTED'
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
productname = 'OfflineIMAP'
|
productname = 'OfflineIMAP'
|
||||||
versionstr = "2.0.6"
|
versionstr = "2.0.7"
|
||||||
|
|
||||||
versionlist = versionstr.split(".")
|
versionlist = versionstr.split(".")
|
||||||
major = versionlist[0]
|
major = versionlist[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user