From 832c7ddd6656df86ae6cef2afae8ce770ac27e84 Mon Sep 17 00:00:00 2001 From: jgoerzen Date: Wed, 20 Nov 2002 05:57:45 +0100 Subject: [PATCH] /offlineimap/head: changeset 289 Fixed infinite loop in imapserver.py with preauth --- offlineimap/head/debian/changelog | 1 + offlineimap/head/offlineimap.1 | 2 +- offlineimap/head/offlineimap/imapserver.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/offlineimap/head/debian/changelog b/offlineimap/head/debian/changelog index 7f8ded6..8b2cfc4 100644 --- a/offlineimap/head/debian/changelog +++ b/offlineimap/head/debian/changelog @@ -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 Tue, 12 Nov 2002 09:29:31 -0600 diff --git a/offlineimap/head/offlineimap.1 b/offlineimap/head/offlineimap.1 index a38e5de..9f85849 100644 --- a/offlineimap/head/offlineimap.1 +++ b/offlineimap/head/offlineimap.1 @@ -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 diff --git a/offlineimap/head/offlineimap/imapserver.py b/offlineimap/head/offlineimap/imapserver.py index c29211b..5ab0c1f 100644 --- a/offlineimap/head/offlineimap/imapserver.py +++ b/offlineimap/head/offlineimap/imapserver.py @@ -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: -- 2.39.2