diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-10-30 21:48:17 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-10-30 21:48:17 +0000 |
commit | 2d9dc7131c720a2b931a8b8000aa24f3a3101a8a (patch) | |
tree | 7cb1b97fae869bb2f6451a8b083da6faf82e0ce7 | |
parent | bcc358c34513559116ad49673029eddcbf7a5bf0 (diff) | |
download | fetchmail-2d9dc7131c720a2b931a8b8000aa24f3a3101a8a.tar.gz fetchmail-2d9dc7131c720a2b931a8b8000aa24f3a3101a8a.tar.bz2 fetchmail-2d9dc7131c720a2b931a8b8000aa24f3a3101a8a.zip |
Set service properly after autoprobe succeeded. Debian Bug#320645.
svn path=/trunk/; revision=4383
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | fetchmailconf.py | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -260,6 +260,8 @@ fetchmail 6.3.0 (not yet released officially): If hostname cannot be qualified, complain noisily and continue, unless Kerberos, ODMR or ETRN are used (these require a FQDN). Partial fix of Debian Bug#150137. Fixes Debian Bug#316454. Matthias Andree +* fetchmailconf now sets the service properly after autoprobe. Fixes Debian + Bug#320645. Matthias Andree # INTERNAL CHANGES * Switched to automake. Matthias Andree. diff --git a/fetchmailconf.py b/fetchmailconf.py index 5844d01c..e2e3f094 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -5,7 +5,7 @@ # Matthias Andree <matthias.andree@gmx.de> # Requires Python with Tkinter, and the following OS-dependent services: # posix, posixpath, socket -version = "1.50" +version = "1.51 $Revision$" from Tkinter import * from Dialog import * @@ -1515,6 +1515,7 @@ Fetchmail doesn't know anything special about this server type. title = "Autoprobe of " + realhost + " succeeded" confirm = "The " + protocol + " server said:\n\n" + greetline + warnings self.protocol.set(protocol) + self.service.set(defaultports[protocol]) confwin.title(title) confwin.iconname(title) Label(confwin, text=title).pack() |