]> code.delx.au - offlineimap/commitdiff
/offlineimap/head: changeset 285
authorjgoerzen <jgoerzen>
Wed, 6 Nov 2002 01:38:11 +0000 (02:38 +0100)
committerjgoerzen <jgoerzen>
Wed, 6 Nov 2002 01:38:11 +0000 (02:38 +0100)
Adding missing import os to imapserver.py. Thanks to John Wiegley for
catching that. Updated changelog

offlineimap/head/ChangeLog
offlineimap/head/debian/changelog
offlineimap/head/offlineimap/imapserver.py

index cb1ed6cb87baf224752f2aec216c82bd4163b167..3e85e6c47fd779f9623b780d5c089914f25ad9b2 100644 (file)
@@ -1,3 +1,32 @@
+------------------------------------------------------------------------
+rev 283:  jgoerzen | 2002-11-05 08:07:45 -0600 (Tue, 05 Nov 2002) | 3 lines
+Changed paths:
+   M /offlineimap/head/debian/changelog
+   M /offlineimap/head/offlineimap.1
+
+  * Fixed setup.py installation instructions.
+
+
+------------------------------------------------------------------------
+rev 282:  jgoerzen | 2002-11-04 19:11:28 -0600 (Mon, 04 Nov 2002) | 2 lines
+Changed paths:
+   M /offlineimap/head/offlineimap/imapserver.py
+
+Updated with more md5 debugging
+
+------------------------------------------------------------------------
+rev 281:  jgoerzen | 2002-11-04 13:24:41 -0600 (Mon, 04 Nov 2002) | 3 lines
+Changed paths:
+   M /offlineimap/head/ChangeLog
+   M /offlineimap/head/bin/offlineimap
+   M /offlineimap/head/debian/changelog
+   M /offlineimap/head/offlineimap/imapserver.py
+   M /offlineimap/head/offlineimap/version.py
+   M /offlineimap/head/offlineimap.py
+
+  * Fixed CRAM-MD5 auth so it actually works now.
+This is 3.99.3
+
 ------------------------------------------------------------------------
 rev 280:  jgoerzen | 2002-11-04 11:38:39 -0600 (Mon, 04 Nov 2002) | 3 lines
 Changed paths:
index 1d23b4916974f744d44364dfd724e60c17acd445..2b7303fb679535b237fb681715eef40577c93cb7 100644 (file)
@@ -1,6 +1,10 @@
 offlineimap (3.99.4) unstable; urgency=low
 
   * Fixed setup.py installation instructions.
+  * Added more debugging to the CRAM-MD5 authentication module.
+  * CRAM-MD5 *really* fixed this time.  Thanks to MJ for the patch.
+  * Adding missing import os to imapserver.py.  Thanks to John Wiegley
+    for catching that.
 
  -- John Goerzen <jgoerzen@complete.org>  Tue,  5 Nov 2002 08:06:45 -0600
 
index bc254cb9d8f8a6a5e7d31d3dd4487657fa16e042..c29211b6fa525da93ec395df31e77ab3091c0d94 100644 (file)
@@ -19,7 +19,7 @@
 from offlineimap import imaplib, imaputil, threadutil
 from offlineimap.ui import UIBase
 from threading import *
-import thread, hmac
+import thread, hmac, os
 
 
 class UsefulIMAPMixIn: