diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-06-07 03:03:51 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-06-07 03:03:51 +0000 |
commit | 1a4e6fdf6eced3504c5fc1231f83c01734a9675d (patch) | |
tree | 46d3d8b3a5a7f6c603d112a4dc2f21330c6e57ca | |
parent | bdf8ed139a586f3ef1d11574c59813f982ca0698 (diff) | |
download | fetchmail-1a4e6fdf6eced3504c5fc1231f83c01734a9675d.tar.gz fetchmail-1a4e6fdf6eced3504c5fc1231f83c01734a9675d.tar.bz2 fetchmail-1a4e6fdf6eced3504c5fc1231f83c01734a9675d.zip |
Warn about spray.net servers.
svn path=/trunk/; revision=2901
-rwxr-xr-x | fetchmailconf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fetchmailconf b/fetchmailconf index 376614e0..2577894f 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -1226,6 +1226,15 @@ this bug, turn on `fetchall' on all user entries associated with this server. """ + if string.find(greetline, " spray.se") > 0: + warnings = warnings + """ +Your POP3 server has "spray.se" in its header line. In May 2000 at +least one such server did not process the "TOP" command correctly; the +symptom is that messages are treated as headerless. To work around +this bug, turn on `fetchall' on all user entries associated with this +server. + +""" if string.find(greetline, " usa.net") > 0: warnings = warnings + """ You appear to be using USA.NET's free mail service. Their POP3 servers |