Hi,
I just started using YPOPs to download my yahoo mail. The problem is that no matter what mail client I use it eventually gets stuck. To get around this I wrote my own little pop3 client, which works great. Except the problem with this is that when there is a line in a message that looks like:
.
or in other words:
^.\r\n$
or
.CRLF
YPOPs sends it to my client. But that is supposed to be the indication of the end of a message (so my client thinks the email is over). YPOPs should send:
^\r\n.\r\n$
or
CRLF.CRLF
instead according to RFC 1939 - Post Office Protocol - Version 3.
I think this should be an easy change to make. I would do it myself, but the source code for the most recent version doesn't seem to be available and I don't have a compiler on my windows machine. But if you point me at the source code, I guess I'll go and find a compiler.
Thanks in advance,
Bijan



