CentOS 8.x Control Web panel Disabling POP3 protocol

From Notes_Wiki
Revision as of 13:45, 7 October 2025 by Akshay (talk | contribs) (Created page with "Home > CentOS > CentOS 8.x > Email servers > Control Web panel > CentOS 8.x Control Web panel Disabling POP3 protocol = How to Disable the POP3 Protocol in a CWP Mail Server = 1. Open the Dovecot configuration file: <pre> vim /etc/dovecot/dovecot.conf </pre> 2. Locate the following line and remove '''pop3''' from the list of enabled protocols: <pre> protocols = imap lmtp pop3 si...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Home > CentOS > CentOS 8.x > Email servers > Control Web panel > CentOS 8.x Control Web panel Disabling POP3 protocol


How to Disable the POP3 Protocol in a CWP Mail Server

1. Open the Dovecot configuration file:

vim /etc/dovecot/dovecot.conf

2. Locate the following line and remove pop3 from the list of enabled protocols:

protocols = imap lmtp pop3 sieve

Update it to:

protocols = imap lmtp sieve

3. Restart the Dovecot service to apply the changes:

systemctl restart dovecot

4. Verify that the POP3 ports (110 and 995) are no longer listening:

netstat -tulnp | grep dovecot

or

ss -tuln | grep :110
ss -tuln | grep :995

5. Additionally, try configuring an email client with the POP3 protocol. If the configuration has been applied correctly, the connection will fail and you will not be able to use POP3.


Home > CentOS > CentOS 8.x > Email servers > Control Web panel > CentOS 8.x Control Web panel Disabling POP3 protocol