SMTP primarily uses port 25 for outgoing email relay, but ports 587 and 465 are also standard for secure submissions as of 2026.
What is the port for outgoing SMTP?
The standard port for outgoing SMTP is 25, designated by IANA for server-to-server email relay.
You’ll find port 25 everywhere in legacy systems. It’s the original port assigned to SMTP back in the RFC 821 days, and still serves as the default for passing messages between mail servers. Enterprise setups and ISPs rely on it heavily for SMTP traffic.
Can I use port 587 instead 25?
Yes, port 587 is preferred for email client submissions because it supports authentication and is less likely to be blocked by ISPs.
Port 587 isn’t just a random number—it’s the “message submission port,” built specifically for mail clients like Outlook or Thunderbird to send emails to a server. It usually runs with TLS encryption and demands authentication, which cuts down on spam and abuse. Honestly, most modern providers push users toward 587 or 465 instead of 25 when they’re setting up an email client.
Does SMTP use port 25?
Yes, SMTP uses port 25 primarily for server-to-server email relaying across the internet.
Think of port 25 as the highway for SMTP relaying—it moves email from one mail server to another, say from Gmail’s servers over to Yahoo’s. ISPs often block it now to fight spam, which is why ports 587 and 465 get the nod for client-to-server traffic.
How do I choose my SMTP port?
Choose port 587 for modern email clients with TLS encryption or port 465 for implicit SSL encryption.
Your SMTP port boils down to two things: what your provider supports and how secure you need to be. Port 587 is the go-to for secure submissions with STARTTLS, while port 465 handles implicit SSL/TLS. Port 25? That’s mostly for server-to-server chatter. Always double-check your email provider’s docs—they usually spell out the best settings.
Is port 587 TLS or SSL?
Port 587 uses TLS (Transport Layer Security) encryption, not SSL, as per IETF guidelines.
Port 587 runs STARTTLS, which upgrades a plaintext link to TLS encryption on the fly. SSL? That’s the old guard—deprecated by the IETF and not something you want to use here. TLS is the modern standard for secure email.
How do I enable port 25?
To enable port 25, add an exception in your firewall settings by specifying port 25 under TCP in the Windows Firewall Exceptions.
Here’s how you do it in Windows: head to Control Panel > Windows Defender Firewall > Advanced Settings > Inbound Rules > New Rule. Pick “Port,” select TCP, type in “25,” and allow the connection. Just keep in mind that many residential ISPs block outbound port 25 to curb spam, so you might hit a wall there.
What is port 110 used for?
Port 110 is used for POP3 (Post Office Protocol version 3), which retrieves email from a mail server to a client.
POP3 is the classic protocol for pulling emails down to your device, and you’ll see it in clients like Outlook or Thunderbird. It usually runs unencrypted, though you can lock it down with TLS on port 995 (POP3S). These days, IMAP (port 143) tends to be the more popular choice for modern email access.
What port 25 is used for?
Port 25 is used for SMTP email relaying between mail servers on the internet.
Port 25 is the backbone for SMTP relaying—it’s what shuttles emails from one mail server to another, like from Gmail’s servers to Yahoo’s. End users rarely submit emails on port 25 anymore because of spam risks and ISP blocks. Instead, ports 587 and 465 are the usual suspects for client submissions.
How do I check if port 25 is open?
Enable the Telnet Client in Windows and use it to test port 25 connectivity by running `telnet your.smtp.server 25`.
- Open Control Panel > Programs > Turn Windows features on or off.
- Tick “Telnet Client” and hit OK to install it.
- Fire up Command Prompt and type: `telnet your.smtp.server 25` (swap in your server’s address).
- If you get a blank screen or a server response, the port’s open. If not, the connection flopped.
When the test fails, don’t panic—just check your firewall, ISP restrictions, or server settings. Residential ISPs love blocking port 25 to keep spam in check.
Why is port 25 blocked?
Port 25 is frequently blocked by ISPs to prevent spam and abuse from open relays or compromised servers.
Spammers love exploiting port 25 because it’s the default for SMTP relaying. Open relays and insecure servers become spam launchpads, so many ISPs just block outbound port 25 on residential connections. If your ISP is one of them, you’ll need to use port 587 or 465 with authentication to send emails.
Is port 25 a TLS?
Port 25 can support TLS encryption, but it is not mandatory and is primarily used for unencrypted relaying.
Port 25 can negotiate TLS via STARTTLS, but plenty of servers still use it without encryption for backward compatibility. For secure email submissions, ports 587 (with TLS) or 465 (with SSL) are the safer bets.
Is port 25 UDP or TCP?
Port 25 uses TCP (Transmission Control Protocol), not UDP for reliable email transmission.
| Service | Port | Protocol |
| SMTP | 25 | TCP |
| SMTP | 25 | UDP (rare, not standard) |
SMTP leans on TCP because it needs rock-solid, error-corrected delivery. UDP isn’t standard here—email can’t afford lost packets or missing retries.
What is the 443 port?
Port 443 is the standard port for HTTPS traffic, used for secure web communications.
Port 443 is the backbone of secure internet traffic. It handles HTTPS websites, API calls, and even some secure email connections (like SMTPS). Without it, online privacy and data integrity would crumble.
Is port 587 a SSL?
Port 587 is not SSL, but it supports TLS encryption for secure email submissions.
Port 587 uses STARTTLS to switch from plaintext to TLS encryption. SSL is outdated and not recommended here. If you want implicit SSL encryption, port 465 is your port. Both 587 and 465 are built for secure client-to-server email submissions.
What is the port 143?
Port 143 is used for IMAP (Internet Message Access Protocol), which allows email clients to access emails stored on a server.
| Port | Protocol | Description |
| 143 | TCP | IMAP (retrieves emails from a server) |
| 993 | TCP | IMAPS (secure IMAP over SSL/TLS) |
IMAP is a lifesaver for multi-device email access because it syncs changes in real time. Port 143 usually runs without encryption, but port 993 (IMAPS) locks it down with SSL/TLS.
Edited and fact-checked by the TechFactsHub editorial team.