diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2012-10-14 00:10:11 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2012-10-14 00:10:11 +0200 |
commit | 2199d611d9f4d4770fdd97be942d2e83bedc0569 (patch) | |
tree | 46642498cff0518012d085b421b9746416753447 | |
parent | 464bab19acf0aaeb8c5512c2092042162266de2d (diff) | |
download | fetchmail-2199d611d9f4d4770fdd97be942d2e83bedc0569.tar.gz fetchmail-2199d611d9f4d4770fdd97be942d2e83bedc0569.tar.bz2 fetchmail-2199d611d9f4d4770fdd97be942d2e83bedc0569.zip |
Make Maillennium POP3 workarounds less specific,
to encompass Maillennium POP3/UNIBOX (Maillennium V05.00c++). Reported
by Eddie via fetchmail-users mailing list, 2012-10-13.
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | pop3.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -75,6 +75,11 @@ after 6.3.22 not available on their own in a newer 6.3.X release. * Clean up logfile vs. syslog handling, and in case logfile overrides syslog, send a message to the latter stating where logging goes. +# WORKAROUNDS +* Make Maillennium POP3 workarounds less specific, to encompass + Maillennium POP3/UNIBOX (Maillennium V05.00c++). Reported by Eddie + via fetchmail-users mailing list, 2012-10-13. + fetchmail-6.3.22 (released 2012-08-29, 26077 LoC): @@ -322,9 +322,9 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting) * * Matthias Andree */ - if (peek_capable && strstr(greeting, "Maillennium POP3/PROXY server")) { + if (peek_capable && strstr(greeting, "Maillennium POP3")) { if ((ctl->server.workarounds & WKA_TOP) == 0) { - report(stdout, GT_("Warning: \"Maillennium POP3/PROXY server\" found, using RETR command instead of TOP.\n")); + report(stdout, GT_("Warning: \"Maillennium POP3\" found, using RETR command instead of TOP.\n")); ctl->server.workarounds |= WKA_TOP; } peek_capable = 0; |