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