Skip to content

Port 110: POP3 — Complete Guide

TL;DR:

Email client receive (legacy). Use IMAP 993 with TLS. Standard TCP port, used by the POP3 service.

Check your host & ports →

What is port 110

Port 110 is reserved by IANA for the POP3 service. Email client receive (legacy). Use IMAP 993 with TLS.

Check if the port is open online

To find out if port 110 is open on your host (or a third-party's — for diagnostics), use our port checker. Enter a domain and a port number — results arrive in 1-2 seconds.

Check port 110 →

Security

An open port is a potential attack vector. General rules:

  • Close everything you don't use (firewall default-deny)
  • For admin ports (22 SSH, 3389 RDP, 3306 MySQL) — IP whitelist or VPN
  • Base cases: 80+443 open for web; 22 — from work/VPN only; DB ports — loopback only
  • Use fail2ban for SSH/admin panels

Understanding POP3 and Its Limitations

The Post Office Protocol version 3 (POP3) operates over port 110 and is primarily used for retrieving emails from a mail server. Unlike its counterpart, IMAP, POP3 is designed for a more straightforward approach: it downloads emails from the server to a local device and typically deletes them from the server afterward. This can lead to limitations in multi-device environments, where users might want to access their emails from various locations.

One of the main limitations of POP3 is that it does not synchronize email states across multiple devices. For instance, an email read on one device will still appear as unread on another if it was downloaded via POP3. Additionally, POP3 does not support folders or labels natively; all emails are stored in the user's inbox without any organizational structure.

Furthermore, POP3 operates over an unsecured connection by default, making it susceptible to interception. To mitigate this risk, it is advisable to use POP3 over SSL/TLS, which typically operates on port 995. This ensures that email data is encrypted during transmission, protecting sensitive information from potential threats.

How to Check if Port 110 is Open

Checking if port 110 is open on your server or network is essential for troubleshooting email delivery issues related to POP3. You can use various tools and commands to verify the status of this port.

One of the easiest methods to check if port 110 is open is to use the Telnet command from a command-line interface. Here’s how you can do it:

  • For Windows: Open Command Prompt and type:
telnet your-mail-server.com 110
  • If the connection is successful, you will see a response from the mail server indicating that the port is open.

If Telnet is not installed or you prefer another method, you can use the following command on Linux or macOS:

nc -zv your-mail-server.com 110

This command checks for an open connection on port 110. If the port is open, you will receive a message confirming the connection.

Alternatively, you can use online port checking tools, which can provide a quick status report without needing access to the command line. Simply enter your server's IP address and specify port 110 to see if it is reachable.

Configuring Your Email Client for POP3 Access

Configuring your email client to access your emails via POP3 on port 110 is a straightforward process. Below are the general steps to set up your email client, along with specific settings that you should use.

1. **Open your email client**: This could be Outlook, Thunderbird, or any other email application.

2. **Navigate to account settings**: Look for an option to add a new email account.

3. **Enter your email address and password**: Input your credentials when prompted.

4. **Select POP3 as the account type**: Make sure to choose POP3 instead of IMAP.

5. **Fill in the incoming mail server details**:

  • Incoming Mail Server: your-mail-server.com
  • Port: 110
  • Security Type: None (or SSL/TLS if using port 995)

6. **Fill in the outgoing mail server (SMTP) details**:

  • Outgoing Mail Server: your-smtp-server.com
  • Port: 587 or 465 (for SSL/TLS)

7. **Authentication settings**: Ensure that your email client is set to use authentication for outgoing mail.

8. **Test the configuration**: After saving your settings, test the account to ensure that you can send and receive emails successfully.

By following these steps, you can effectively configure your email client for POP3 access, ensuring that your emails are retrieved and managed according to your preferences.

Learn more

Sources

Frequently Asked Questions

Why close port 110?

Every open port is an attacker's entry point. If the service is not used (or uses a different port), close it to minimise attack surface.

How to check port 110 without Enterno.io?

From a local machine: nc -zv hostname 110 or telnet hostname 110. The online checker is simpler — from different IPs, one click.

Try the live tool that powered this guide

Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.