There are 2 things to distinguish:
- MTA (Mail Transport Agent), which relays emails from sender to recipient, usually using TCP ports 25, 465 and 587
- MDA (Mail Delivery Agent), which allows users downloading/synchronizing their emails, usually using TCP ports 110 and 995 for POP3(S) and 143 and 993 for IMAP(S)
The RFC talks about A publicly-referenced SMTP server
, meaning a MTA.
MTA usually listen on 3 different TCP ports for SMTP(S):
- 25: plain SMTP that can support STARTTLS and that is the ONLY port used to deliver emails from an MTA to another MTA
- 465: SMTP over TLS, used by users to send their emails
- 587: plain SMTP that can support STARTTLS, that can be used by users to send their emails
For STARTTLS, if we take the example of Postfix, you can have 3 different configurations:
- none: the server won't use STARTTLS
- may: the server will propose and use opportunistic encryption (STARTTLS) if available
- encrypt: the server will drop the connection if STARTTLS cannot be used
Now the real problem: currently too many MTA are poorly configured and do not support STARTTLS, this means that requiring it on your server may cause some of your emails not being delivered or your server won't be able to receive emails from senders using an MTA not supporting STARTTLS.
In order to accelerate the move about this, Google in its transparency report displays the percentage of emails being encrypted in transit.
They even went further, now displaying red padlock when they were not encrypted.
However, too many servers are still not supporting STARTTLS, meaning you may face too many issues by requiring it on port 25. As a consequence, the suggestion I can make you for your configuration is the following:
- SMTP port 25: "may", both as client and server
- SMTPS port 465: open it for your users
- SMTP port 587: not really needed
- POP3 port 110: not really needed
- POP3S port 995: open it for your users
- IMAP port 143: not really needed
- IMAPS port 993: open it for your users