Port 587 — SMTP submission
TCP well-known
What runs on port 587
The port applications and mail clients use to send outbound mail, with authentication and STARTTLS.
Security considerations
This is the correct port for application email. Port 25 is for server-to-server relay and is widely blocked.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :587
sudo ss -lntp | grep :587
# Windows
netstat -ano | findstr :587
Get-NetTCPConnection -LocalPort 587
# is it reachable from outside?
nc -zv example.com 587
curl -v telnet://example.com:587
Freeing the port
# find the process, then stop it
sudo lsof -ti :587 | xargs kill # Linux / macOS
netstat -ano | findstr :587 # note the PID, then:
taskkill /PID <pid> /F # Windows
Should this port be open to the internet?
Only on a mail server. If this port is open on something that is not intentionally handling mail, you may be running an open relay — which will get the IP blacklisted quickly.
Quick reference
| Port | 587 |
| Protocol | TCP |
| Service | SMTP submission |
| Range | Well-known (0–1023) — binding requires root on Unix |
Frequently asked questions
What is port 587 used for?
The port applications and mail clients use to send outbound mail, with authentication and STARTTLS.
Is it safe to open port 587?
This is the correct port for application email. Port 25 is for server-to-server relay and is widely blocked.
How do I check if port 587 is open?
Locally, sudo lsof -i :587 on macOS or Linux, or netstat -ano | findstr :587 on Windows. From outside, nc -zv host 587 tells you whether anything answers.
Why do I get "address already in use" on port 587?
Another process is bound to it — often a previous run of your own program that did not exit cleanly. Find it with lsof -ti :587 and stop it, or configure your application to use a different port.
Can I change the port this service uses?
Almost always yes, in the service's configuration. Moving off a default port reduces automated scan noise, but it is obfuscation rather than security — a real attacker scans all 65,535.