-
Index out of range error in Message.ParseHeader() when parsing report-type section of Content-Type header. The existing code assumes there is a semicolon after "report-type", which is not always the case.
2009-08-06 19:44:41 UTC by nobody
-
In POPClient.cs, the flag Connected is always true, even if Disconnect() is called.
I modified Disconnect() to make the flag false:
public void Disconnect()
{
try
{
clientSocket.ReceiveTimeout=500;
clientSocket.SendTimeout=500;
SendCommand("QUIT",true);
clientSocket.ReceiveTimeout=_receiveTimeOut;
clientSocket.SendTimeout=_sendTimeOut;
reader.Close();.
2008-11-12 10:55:57 UTC by trevi18
-
As per the POP3 format, a line that begins with a period should have another period added to it. This came up with the following XML attachment snippet:
ryValue>0=
..00.00.00.00.0
2007-05-28 22:09:10 UTC by nobody
-
Logged In: YES
user_id=1249890
Oh, I've tested successfully against GMail.
2006-09-11 22:42:22 UTC by quandiscto
-
I've added SSL support borrowed shamelessly from:
http://knab.ws/blog/archives/2-Secure-POP3-client-for-
C.html
It requires including a SSL library from:
http://www.mentalis.org/soft/projects/seclib/
I've attached my modified PopClient.cs, the source of
which I downloaded on 11 Sep 2006.
2006-09-11 22:41:12 UTC by quandiscto