diff options
-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() |