diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-06-05 07:29:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-06-05 07:29:41 +0000 |
commit | 5ba811b6940a36dcaac5100f867a6fec1f861318 (patch) | |
tree | cb568edc9f5a72b204b8f5006240547b81815275 /fetchmailconf | |
parent | 6b2a9c3ac5b416edd79a6135b117eacaa4d1ba90 (diff) | |
download | fetchmail-5ba811b6940a36dcaac5100f867a6fec1f861318.tar.gz fetchmail-5ba811b6940a36dcaac5100f867a6fec1f861318.tar.bz2 fetchmail-5ba811b6940a36dcaac5100f867a6fec1f861318.zip |
Chatty autoprobe.
svn path=/trunk/; revision=1910
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmailconf b/fetchmailconf index a872fba0..048e3aa2 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -916,7 +916,7 @@ class ServerEdit(Frame, MyWidget): else: realhost = self.server.pollname greetline = None - for (protocol, port) in (("IMAP",143), ("POP3",109), ("POP2",109)): + for (protocol, port) in (("IMAP",143), ("POP3",110), ("POP2",109)): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: sock.connect(realhost, port) |