diff --git a/offlineimap/head/debian/changelog b/offlineimap/head/debian/changelog index 0708b08..ee2e990 100644 --- a/offlineimap/head/debian/changelog +++ b/offlineimap/head/debian/changelog @@ -1,3 +1,10 @@ +offlineimap (3.2.8) unstable; urgency=low + + * Added a work-around for some IMAP servers that respond poorly + to LIST "" "". It will now do LIST "" "*", for them only. + + -- John Goerzen Mon, 30 Sep 2002 10:48:01 -0500 + offlineimap (3.2.7) unstable; urgency=low * Moved executable to bin/offlineimap. This will allow setup.py to diff --git a/offlineimap/head/offlineimap/version.py b/offlineimap/head/offlineimap/version.py index f3e1cdf..0062423 100644 --- a/offlineimap/head/offlineimap/version.py +++ b/offlineimap/head/offlineimap/version.py @@ -1,8 +1,8 @@ productname = 'OfflineIMAP' -versionstr = "3.2.7" -revno = long('$Rev: 246 $'[6:-2]) +versionstr = "3.2.8" +revno = long('$Rev: 252 $'[6:-2]) revstr = "Rev %d" % revno -datestr = '$Date: 2002-09-26 09:36:16 -0500 (Thu, 26 Sep 2002) $' +datestr = '$Date: 2002-09-30 10:48:45 -0500 (Mon, 30 Sep 2002) $' versionlist = versionstr.split(".") major = versionlist[0]