smtps - pop3s - imaps

Adding TLS to SMTPPOP3, and IMAP is no different than adding TLS to HTTP. Similar to how HTTP gets an appended S for Secure and becomes HTTPS, SMTPPOP3, and IMAP become SMTPS, POP3S, and IMAPS, respectively. Using these protocols over TLS is no different than using HTTP over TLS; therefore, almost all the points from the HTTPS discussion apply to these protocols.

The insecure versions use the default TCP port numbers shown in the table below:

ProtocolDefault Port Number
HTTP80
SMTP25
POP3110
IMAP143

The secure versions, i.e., over TLS, use the following TCP port numbers by default:

ProtocolDefault Port Number
HTTPS443
SMTPS465 and 587
POP3S995
IMAPS993

TLS can be added to many other protocols; the reasoning and advantages would be similar.