diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-03-29 18:50:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-03-29 18:50:09 +0000 |
commit | cd0f693c91c88a453dc5279e4f9f3a0a37a3b06c (patch) | |
tree | 41f6c091107107976743b4027728a0b7aa57ba62 /fetchmailconf | |
parent | 70a14c3c3229ea3b5eedd4e0f726797f80c12e7f (diff) | |
download | fetchmail-cd0f693c91c88a453dc5279e4f9f3a0a37a3b06c.tar.gz fetchmail-cd0f693c91c88a453dc5279e4f9f3a0a37a3b06c.tar.bz2 fetchmail-cd0f693c91c88a453dc5279e4f9f3a0a37a3b06c.zip |
Prevent some spurious matches.
svn path=/trunk/; revision=2839
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index f61f1111..c3ea9497 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -1203,7 +1203,7 @@ 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, "sprynet.com") > 0: + if string.find(greetline, " sprynet.com") > 0: warnings = warnings + """ You appear to be using a SpryNet server. In mid-1999 it was reported that the SpryNet TOP command marks messages seen. Therefore, for proper error @@ -1220,7 +1220,7 @@ this bug, turn on `fetchall' on all user entries associated with this server. """ - if string.find(greetline, "usa.net") > 0: + if string.find(greetline, " usa.net") > 0: warnings = warnings + """ You appear to be using USA.NET's free mail service. Their POP3 servers (at least as of the 2.2 version in use mid-1998) are quite flaky, but |