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