diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-02-18 03:41:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-02-18 03:41:53 +0000 |
commit | cf6c6a28b0631a29085ceeca86c980c0a6e4022d (patch) | |
tree | aa10931caa577ef8f37d690f7f05dd970ab1ce83 /fetchmailconf | |
parent | c5cfa5bee8bb00850ef37062e68e542b02a87d6b (diff) | |
download | fetchmail-cf6c6a28b0631a29085ceeca86c980c0a6e4022d.tar.gz fetchmail-cf6c6a28b0631a29085ceeca86c980c0a6e4022d.tar.bz2 fetchmail-cf6c6a28b0631a29085ceeca86c980c0a6e4022d.zip |
Various minor bug fixes.
svn path=/trunk/; revision=2757
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 245a6170..4ecac058 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -1129,13 +1129,21 @@ Its response to RETR is normal, so use the `fetchall' option. if string.find(greetline, "POP-Max") > 0: warnings = warnings + """ -The Mail Max server screws up on mail with attachments. It reports the -message size with attachments included, but doesn't downloasd them on a +The Mail Max POP3 server screws up on mail with attachments. It reports +the message size with attachments included, but doesn't download them on a RETR or TOP. You should get rid of it -- and the brain-dead NT server it rode in on. """ + if string.find(greetline, "InterChange") > 0: + warnings = warnings + """ +The InterChange IMAP server screws up on mail with attachments. It reports +the message size with attachments included, but doesn't download them on a +RETR or TOP. You should get rid of it. + +""" + if string.find(greetline, "1.003") > 0 or string.find(greetline, "1.004") > 0: warnings = warnings + """ This appears to be an old version of the UC Davis POP server. These are |