/head: changeset 91

Updated read-only support
This commit is contained in:
jgoerzen 2002-07-10 12:25:02 +01:00
parent 097d30e987
commit f8c2be1df7
4 changed files with 20 additions and 5 deletions

View File

@ -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
* offlineimap.conf, offlineimap.py, debian/changelog,

View File

@ -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
* Added support for holdconnectionopen and keepalive. This feature

View File

@ -569,10 +569,7 @@ class IMAP4:
# Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY')
self.untagged_responses = {} # Flush old responses.
self.is_readonly = readonly
if readonly is not None:
name = 'EXAMINE'
else:
name = 'SELECT'
name = 'SELECT'
typ, dat = self._simple_command(name, mailbox)
if typ != 'OK':
self.state = 'AUTH' # Might have been 'SELECTED'

View File

@ -1,5 +1,5 @@
productname = 'OfflineIMAP'
versionstr = "2.0.6"
versionstr = "2.0.7"
versionlist = versionstr.split(".")
major = versionlist[0]