← Back to all network ports
TCP
Unknown

143 IMAP

IMAP keeps messages on the server while synchronizing mailbox state across multiple clients.

Security Context

Port 143 is context-dependent. Its risk depends on the daemon behind it, whether the traffic is encrypted, and how tightly the listener is scoped to trusted networks.

  • !Use IMAPS where mail credentials traverse untrusted networks.

Nmap Check

Use a version probe first so you confirm whether the expected service is really what is listening on this port.

nmap -sV -p 143 <host>

Firewall Commands

UFW
sudo ufw allow 143/tcp
iptables
sudo iptables -A INPUT -p tcp --dport 143 -j ACCEPT

Related TCP Ports