Index: pop3.c =================================================================== --- pop3.c (Revision 4585) +++ pop3.c (Arbeitskopie) @@ -611,6 +611,12 @@ #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, "Warning: Maillennium POP3/PROXY server found, using RETR command.\n"); + peek_capable = 0; + } /* we're approved */ return(PS_SUCCESS);