diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-07-04 02:46:22 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-07-04 02:46:22 +0000 |
commit | f6f4def1a28b6a3528e0391a5eccd9c403881765 (patch) | |
tree | a63db68a37185ce9f718e4e225b64ba6cb6dfbb4 /fetchmailconf | |
parent | d3ce90c880ce40858ff90813738335c8d73dea8d (diff) | |
download | fetchmail-f6f4def1a28b6a3528e0391a5eccd9c403881765.tar.gz fetchmail-f6f4def1a28b6a3528e0391a5eccd9c403881765.tar.bz2 fetchmail-f6f4def1a28b6a3528e0391a5eccd9c403881765.zip |
Don't rely on snprintf.
svn path=/trunk/; revision=3393
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fetchmailconf b/fetchmailconf index a92e542c..1c75e798 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -1274,6 +1274,13 @@ Beware! The UIDL support in this thing is known to be completely broken, and other things probably are too. """ + if string.find(greetline, "MercuryP/NLM v1.48") > 0: + warnings = warnings + """ +This is not a POP3 server. It has delusions of being one, but after +RETR all messages are automatically marked to be deleted. The only +way to prevent this is to issue an RSET before leaving the server. + +""" if string.find(greetline, "POP-Max") > 0: warnings = warnings + """ The Mail Max POP3 server screws up on mail with attachments. It |