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.
Printable View
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.
System.Net.Security.SslStream
wrap your socket code with one of those if tls/ssl is needed.
Thanks a lot! I will look into that :)