Mark Constable wrote on 14.11.2004 16:42:
For the last 2 months we've been getting an increasing amount
of incoming messages with incomplete headers and an empty message body. They prevent POP users from downloading their email.
This simplest patch (maybe outdated) solved the problem for me long time ago.
--- ./courier/imap/pop3dserver.c.orig Sun May 9 07:04:45 2004
+++ ./courier/imap/pop3dserver.c Fri May 28 18:54:01 2004
@@ -671,7 +671,7 @@
exit(1);
}
if (lastc != '\n') printf("\r\n");
- printf(".\r\n");
+ printf("\r\n.\r\n");
fflush(stdout);
fclose(f);
if (lptr) return;-- Alexei.
------------------------------------------------------- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensional database that combines robust object and relational technologies, making it a perfect match for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8 _______________________________________________ courier-users mailing list [EMAIL PROTECTED] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
