diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-06-05 06:42:59 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-06-05 06:42:59 +0000 |
commit | a21ab1077ac8a0e01e1858dd6e367587fba24e1f (patch) | |
tree | e1788eda34fdde097a9e7f2d38119d66056acb28 /fetchmailconf | |
parent | b2ca3d415ce9dff444733c0362a625188b93524a (diff) | |
download | fetchmail-a21ab1077ac8a0e01e1858dd6e367587fba24e1f.tar.gz fetchmail-a21ab1077ac8a0e01e1858dd6e367587fba24e1f.tar.bz2 fetchmail-a21ab1077ac8a0e01e1858dd6e367587fba24e1f.zip |
Better autoprobing.
svn path=/trunk/; revision=1908
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/fetchmailconf b/fetchmailconf index 6688a637..52506fb7 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -935,8 +935,44 @@ This could mean the host doesn't support any, or just that your Internet connection is down. """ else: + warnings = '' + # OK, now try to recognize potential problems + + if string.find(greetline, "1.003") > 0 or string.find(greetline, "1.003") > 0: + warnings = warnings + """ +This appears to be an old version of the UC Davis POP server. These are +dangerously unreliable (among other problems, they may drop your mailbox +on the floor if your connection is interrupted during the session). + +It is strongly recommended that you find a better POP3 server. + +""" + if string.find(greetline, "usa.net") > 0: + warnings = warnings + """ +You appear to be using USA.NET's free mail service. This is a problem; +their POP3 servers, at least as of the 2.2 version in use mid-1998, +are quite flaky. They seem to require that fetchall be switched on +(otherwise you won't necessarily see all your mail, not even new mail). +They botch the TOP command the fetchmail normally uses for retrieval +(it only retrieves about 10 lines rather than the number specified). + +It is recommended that you turn on fetchall and keep. Turning on keep +will disable the use of TOP. + +""" + if string.find(greetline, "IMAP2bis") > 0: + warnings = warnings + """ +IMAP2bis servers have a minor problem; they can't peek at messages without +marking them seen. If you take a line hit during the retrieval, the +interrupted message may get left on the server, marked seen. + +To work around this, it is recommended that you set the `fetchall' option, +so any stuck mail will be retrieved next time around. +""" + + # Display success window with warnings title = "Autoprobe of " + realhost + " succeeded" - confirm = "The " + protocol + " server said:\n\n" + greetline + confirm = "The " + protocol + " server said:\n\n" + greetline + warnings self.protocol.set(protocol) confwin.title(title) confwin.iconname(title) |