]> code.delx.au - offlineimap/commitdiff
/offlineimap/head: changeset 289
authorjgoerzen <jgoerzen>
Wed, 20 Nov 2002 04:57:45 +0000 (05:57 +0100)
committerjgoerzen <jgoerzen>
Wed, 20 Nov 2002 04:57:45 +0000 (05:57 +0100)
Fixed infinite loop in imapserver.py with preauth

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

index 7f8ded6ae45526fd19506f1cca928e9a7fd41e6a..8b2cfc46a378941712fd124efd7099095138997c 100644 (file)
@@ -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 <jgoerzen@complete.org>  Tue, 12 Nov 2002 09:29:31 -0600
 
index a38e5de5b1ecc0fe351ad825f94d67cc170ad7cc..9f85849a392d6c143764b42c4abd6d242b9056ea 100644 (file)
@@ -161,7 +161,7 @@ to invoke the program.
 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
index c29211b6fa525da93ec395df31e77ab3091c0d94..5ab0c1fb37fe1065a3043377800aa7c692571ca8 100644 (file)
@@ -159,6 +159,7 @@ class IMAPServer:
             # 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: