rev 289 - in offlineimap/head: . debian offlineimap

[email protected] Tue, 19 Nov 2002 16:57:46 -0600 (CST)
Newsgroups gmane.mail.imap.offlineimap.subversion
Message-ID <[email protected]>
Author: jgoerzen
Date: 2002-11-19 16:57:45 -0600 (Tue, 19 Nov 2002)
New Revision: 289

Modified:
   offlineimap/head/debian/changelog
   offlineimap/head/offlineimap.1
   offlineimap/head/offlineimap/imapserver.py
Log:
Fixed infinite loop in imapserver.py with preauth


Modified: offlineimap/head/debian/changelog
==============================================================================
--- offlineimap/head/debian/changelog	(original)
+++ offlineimap/head/debian/changelog	Tue Nov 19 16:57:45 2002
@@ -1,6 +1,7 @@
 offlineimap (3.99.5) unstable; urgency=low
 
   * Added ability to disable expunging on the server.
+  * Fixed infinite loop with preauth.  Closes: #169514.
 
  -- John Goerzen <[email protected]>  Tue, 12 Nov 2002 09:29:31 -0600
 

Modified: offlineimap/head/offlineimap.1
==============================================================================
--- offlineimap/head/offlineimap.1	(original)
+++ offlineimap/head/offlineimap.1	Tue Nov 19 16:57:46 2002
@@ -161,7 +161,7 @@
 Download the tar.gz version of the package from the website.  Then run
 these commands, making sure that you are the "root" user first:
 .PP
-.B tar -zxvf offlineimap-x.y.z.tar.gz
+.B tar -zxvf offlineimap_x.y.z.tar.gz
 .br
 .B cd offlineimap-x.y.z
 .br

Modified: offlineimap/head/offlineimap/imapserver.py
==============================================================================
--- offlineimap/head/offlineimap/imapserver.py	(original)
+++ offlineimap/head/offlineimap/imapserver.py	Tue Nov 19 16:57:46 2002
@@ -159,6 +159,7 @@
             # Generate a new connection.
             if self.tunnel:
                 imapobj = UsefulIMAP4_Tunnel(self.tunnel)
+                success = 1
             elif self.usessl:
                 imapobj = UsefulIMAP4_SSL(self.hostname, self.port)
             else: