aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/pop3.c b/pop3.c
index 12f2d999..df85e3e6 100644
--- a/pop3.c
+++ b/pop3.c
@@ -611,6 +611,12 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting)
#endif
set_peek_capable(ctl);
+ /* comcast's Maillennium POP3/PROXY is full of bugs and truncates
+ * TOP replies after c. 80 kByte, so disable TOP. */
+ if (peek_capable && strstr(greeting, "Maillennium POP3/PROXY server")) {
+ report(stdout, GT_("Warning: Maillennium POP3/PROXY server found, using RETR command.\n"));
+ peek_capable = 0;
+ }
/* we're approved */
return(PS_SUCCESS);