diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-10-26 19:14:58 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-10-26 19:14:58 +0000 |
commit | 8d293a3b12a5e2c4ecc6f70bcd59b862294458c8 (patch) | |
tree | 1483ef9ed5858a2b81794ebc927ed381a5478d2d | |
parent | 265027a7c122ab9992ca9e6c9a42dd9b93f4944b (diff) | |
download | fetchmail-8d293a3b12a5e2c4ecc6f70bcd59b862294458c8.tar.gz fetchmail-8d293a3b12a5e2c4ecc6f70bcd59b862294458c8.tar.bz2 fetchmail-8d293a3b12a5e2c4ecc6f70bcd59b862294458c8.zip |
Ready for SSL changes.
svn path=/trunk/; revision=2642
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | fetchmailconf | 10 |
2 files changed, 10 insertions, 1 deletions
@@ -7,6 +7,7 @@ * Updated config.guess and config.sub. * Backed out the 5.1.0 change to quote usernames with embedded spaces. It actually breaks things. +* Added to fetchmailconf a warning about Imail IMAP servers. fetchmail-5.1.2 (Thu Oct 7 09:46:07 EDT 1999), 17906 lines: * Joe Loughry <loughry@uswest.net> sent a patch to handle multihomed machines. diff --git a/fetchmailconf b/fetchmailconf index 053895a0..2e334c06 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -4,7 +4,7 @@ # by Eric S. Raymond, <esr@snark.thyrsus.com>. # Requires Python with Tkinter, and the following OS-dependent services: # posix, posixpath, socket -version = "1.16" +version = "1.17" from Tkinter import * from Dialog import * @@ -1192,6 +1192,14 @@ it has been observed with fetchpop. The fix is to upgrade to qpopper 3.0beta or a more recent version. Better yet, switch to IMAP. """ + if string.find(greetline, "Imail") > 0: + warnings = warnings + """ +We've seen a bug report indicating that this IMAP server (at least as of +version 5.0.7) returns an invalid body size for messages with MIME +attachments; the effect is to drop the attachments on the floor. We +recommend you upgrade to a non-broken IMAP server. + +""" closebrak = string.find(greetline, ">") if closebrak > 0 and greetline[closebrak+1] == "\r": warnings = warnings + """ |