Port 143 — IMAP
TCP well-known
What runs on port 143
Mail access that keeps messages on the server and syncs state across devices.
Security considerations
Unencrypted. Use port 993 for IMAP over TLS.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :143
sudo ss -lntp | grep :143
# Windows
netstat -ano | findstr :143
Get-NetTCPConnection -LocalPort 143
# is it reachable from outside?
nc -zv example.com 143
curl -v telnet://example.com:143
Freeing the port
# find the process, then stop it
sudo lsof -ti :143 | xargs kill # Linux / macOS
netstat -ano | findstr :143 # note the PID, then:
taskkill /PID <pid> /F # Windows