rev 285 - in offlineimap/head: . debian offlineimap
[email protected] Tue, 5 Nov 2002 14:38:12 -0500 (EST)
| Newsgroups | gmane.mail.imap.offlineimap.subversion |
|---|---|
| Message-ID | <[email protected]> |
Author: jgoerzen
Date: 2002-11-05 14:38:11 -0500 (Tue, 05 Nov 2002)
New Revision: 285
Modified:
offlineimap/head/ChangeLog
offlineimap/head/debian/changelog
offlineimap/head/offlineimap/imapserver.py
Log:
* Adding missing import os to imapserver.py. Thanks to John Wiegley
for catching that.
Updated changelog
Modified: offlineimap/head/debian/changelog
==============================================================================
--- offlineimap/head/debian/changelog (original)
+++ offlineimap/head/debian/changelog Tue Nov 5 14:38:12 2002
@@ -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 <[email protected]> Tue, 5 Nov 2002 08:06:45 -0600
Modified: offlineimap/head/ChangeLog
==============================================================================
--- offlineimap/head/ChangeLog (original)
+++ offlineimap/head/ChangeLog Tue Nov 5 14:38:12 2002
@@ -1,4 +1,33 @@
------------------------------------------------------------------------
+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:
M /offlineimap/head/debian/changelog
Modified: offlineimap/head/offlineimap/imapserver.py
==============================================================================
--- offlineimap/head/offlineimap/imapserver.py (original)
+++ offlineimap/head/offlineimap/imapserver.py Tue Nov 5 14:38:12 2002
@@ -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: