/offlineimap/head: changeset 285

Adding missing import os to imapserver.py. Thanks to John Wiegley for
catching that. Updated changelog
This commit is contained in:
jgoerzen 2002-11-06 02:38:11 +01:00
parent a2720a4d21
commit f7c4889918
3 changed files with 34 additions and 1 deletions

View 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:

View 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

View 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: