Click to See Complete Forum and Search --> : C# Pop3 TLS/SSL


messycan
July 18th, 2008, 03:52 PM
Hi all,

I am developing a small application that just checks for email, but most servers use TLS / SSL...does anyone know how to handle/create these sessions? I can receive email fine with a non-encrypted POP3 server.

MadHatter
July 18th, 2008, 04:49 PM
System.Net.Security.SslStream

wrap your socket code with one of those if tls/ssl is needed.

messycan
July 18th, 2008, 05:16 PM
Thanks a lot! I will look into that :)