Port 465 — SMTPS
TCP well-known
What runs on port 465
Mail submission over implicit TLS.
Security considerations
Deprecated, then un-deprecated. Port 587 with STARTTLS is the more widely supported choice.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :465
sudo ss -lntp | grep :465
# Windows
netstat -ano | findstr :465
Get-NetTCPConnection -LocalPort 465
# is it reachable from outside?
nc -zv example.com 465
curl -v telnet://example.com:465
Freeing the port
# find the process, then stop it
sudo lsof -ti :465 | xargs kill # Linux / macOS
netstat -ano | findstr :465 # note the PID, then:
taskkill /PID <pid> /F # Windows