Reputation: 11
Trying to test email login issues on a cpanel server. Telnet isn't working to test port 995. Keep receiving connection closed by foreign host error. Thanks!
Telnet is installed and firewalls open. Not able to figure this out.
Upvotes: 0
Views: 315
Reputation: 3528
995 is the port for POP3 with implicit TLS. Use openssl
instead. For example:
openssl s_client -quiet -crlf -connect pop.gmail.com:995
Upvotes: 1