How to Telnet to Pop3 server

pop3telnet

I have an interview coming up and I want to play around with POP3 and SMTP protocol.

I'm trying to login to my gmail's pop3 server account using Microsoft Telnet command line program but it's not working.

I'm typing pop.gmail.com 995 into the command window. I think it's not working because Gmail servers require SSL. I have tried using Putty to connect to pop.gmail.com at port 995 but this too is not working.

If Microsoft Telnet or Putty is not working, what else would?

Thanks!

Best Answer

You can install OpenSSL for Windows, and use it to connect to servers using SSL. Type this in the command line:

openssl s_client -connect pop.gmail.com:995

By the way, Gmail's SMTP servers require authentication too (unless you're connecting from anotehr known mail server), so you'd better start with something simpler.