SMTP 421 'Try again later' is a temporary deferral — the receiving server wants you to retry, not give up. Common causes include rate limiting (sending too fast), greylisting (first-time sender verification), server congestion, or reputation-based throttling. Your mail server should automatically retry. If 421s persist for hours, reduce sending speed, check reputation, and verify you're not being rate-limited for abuse patterns.
421 Try Again Later: What to Do About This SMTP Deferral
Understanding 421 Deferrals
SMTP 421 means "Service not available, closing transmission channel." In plain terms: "Go away and come back later."
This is a temporary failure. Your mail server should:
- Queue the message
- Wait (with backoff)
- Retry delivery
If everything is working, 421s resolve automatically.
Common Causes
1. Rate Limiting
You're sending too fast for this destination.
Signs:
- 421 responses increase with send volume
- Same message eventually delivers after delays
- Error message mentions "too many connections" or "rate exceeded"
Common messages:
- "421 4.7.0 Try again later, closing connection"
- "421 Too many concurrent SMTP connections"
- "421 Rate limited, try again later"
Fix:
- Reduce concurrent connections to destination
- Slow sending rate (throttle)
- Spread sends over time
- Use multiple IPs if legitimate volume requires it
2. Greylisting
First-time sender verification (common with smaller domains).
How it works:
- Unknown sender connects
- Server returns 421/450
- Server records the attempt
- Legitimate servers retry 5-30 minutes later
- Retry succeeds because sender is now "known"
Signs:
- First email to domain defers
- Same message delivers 15-30 minutes later
- Only affects first contact
This is normal. Your MTA handles it automatically.
3. Server Congestion
Receiving server is overloaded.
Signs:
- Affects all senders (not just you)
- Temporary (resolves in hours)
- Error mentions "resources" or "busy"
Fix:
- Nothing to do but wait
- Your MTA will retry
- Not your problem
4. Reputation-Based Throttling
Server is accepting some of your email but slowing you down due to reputation concerns.
Signs:
- Persistent 421s lasting hours
- Combined with successful deliveries (mixed results)
- New IP or domain
- Check Postmaster Tools shows reputation issues
Fix:
- Check Google Postmaster Tools
- Check Microsoft SNDS
- Reduce volume
- Focus on engaged recipients
- Allow reputation to build
Practitioner note: Gmail especially uses 421 as a soft warning. They're not rejecting outright, but they're not trusting you either. If you see persistent 421s from Gmail, it's a reputation signal. Treat it like the warning it is.
5. Too Many Connections
You're opening more connections than allowed.
Typical limits:
- Gmail: ~20 concurrent connections
- Outlook: ~10 concurrent connections
- Yahoo: ~5-10 concurrent connections
- Smaller providers: ~2-5 concurrent connections
Fix:
- Configure MTA to limit concurrent connections per destination
- Implement connection pooling
- Close idle connections promptly
Provider-Specific 421s
Gmail
| Message | Cause |
|---|---|
| "421-4.7.0" | Rate limited or reputation |
| "421-4.7.28" | IP sending limit exceeded |
| "421 Try again later" | General throttling |
Actions:
- Check Google Postmaster Tools
- Reduce sending rate
- Verify authentication
- Warm IP if new
Microsoft/Outlook
| Message | Cause |
|---|---|
| "421 RP-001" | Excessive connection rate |
| "421 RP-002" | Too many messages per connection |
| "421 RP-003" | Connection throttled |
Actions:
- Check SNDS status
- Reduce connections
- Fewer messages per connection
- Review Microsoft's sending limits
Yahoo
| Message | Cause |
|---|---|
| "421 Message from X.X.X.X deferred" | Reputation/volume |
| "421 4.7.0" | Temporary policy rejection |
Actions:
- Reduce volume to Yahoo domains
- Verify authentication
- Check for blacklists
Handling 421 in Your Infrastructure
MTA Configuration
Configure your mail server for proper retry:
Postfix example:
# Retry intervals
queue_run_delay = 300
minimal_backoff_time = 300
maximal_backoff_time = 4000
# Queue lifetime
bounce_queue_lifetime = 5d
maximal_queue_lifetime = 5d
Good retry schedule:
- First retry: 5-15 minutes
- Second retry: 15-30 minutes
- Third retry: 1 hour
- Further retries: Exponential backoff
- Maximum queue time: 72 hours (then bounce)
ESP Handling
Most ESPs handle 421 automatically. Check your ESP dashboard for:
- Deferral rates
- Delivery delays
- Provider-specific issues
Connection Management
Limit concurrent connections:
Per-domain limits (recommendations):
Gmail: 20 connections max
Outlook: 10 connections max
Yahoo: 5 connections max
Default: 5 connections max
When 421 Becomes a Problem
Normal
- Occasional 421s that resolve within minutes
- First-message deferrals (greylisting)
- Brief spikes during high-send periods
Warning Signs
- 421s lasting 4+ hours consistently
- High percentage of sends deferred
- 421s converting to 5xx bounces
- Specific provider always defers
Investigation Needed
- All emails to one domain get 421
- 421s started after specific change
- Combined with reputation warnings in Postmaster Tools
Diagnosis Workflow
Persistent 421 Received
│
├── Check error message text
│ └── Specific reason mentioned?
│ ├── Rate limit → Reduce speed
│ ├── Too many connections → Limit connections
│ └── Reputation → Check Postmaster Tools
│
├── Check timing
│ └── First message to domain?
│ └── Probably greylisting → Wait for retry
│
├── Check reputation tools
│ └── Issues shown? → Address reputation
│
├── Check MTA retry settings
│ └── Proper backoff configured? → Adjust if needed
│
└── Check volume/rate
└── Sending too fast? → Throttle
Prevention
- Implement proper throttling — Don't blast as fast as possible
- Respect connection limits — Configure per-domain connection caps
- Monitor deferral rates — Catch issues before they become problems
- Maintain reputation — Good reputation = less throttling
- Use multiple IPs for volume — Spread load if legitimately high volume
If you're experiencing persistent 421 deferrals and can't identify the cause, schedule a consultation — I'll analyze your sending patterns and optimize your delivery infrastructure.
Sources
- RFC 5321: Simple Mail Transfer Protocol
- Google: Bulk sender guidelines
- Microsoft: Troubleshooting mail delivery
- Yahoo: Postmaster guidelines
v1.0 · March 2026
Frequently Asked Questions
What does 421 mean in SMTP?
421 is a temporary failure code meaning 'service not available.' The server is telling you to try again later. Unlike 5xx (permanent failure), 421 expects you to retry.
How long should I wait before retrying after 421?
Most MTAs use exponential backoff: 15 minutes, then 30 minutes, then 1 hour, etc. The 421 message sometimes specifies a wait time. Follow it if provided.
Is 421 a rate limiting error?
Often yes. Many providers return 421 when you're sending too fast. Gmail, Outlook, and Yahoo all use 421 for rate limiting. Slow down your sending rate.
What's the difference between 421 and 450?
Both are temporary failures. 421 specifically means 'service unavailable' at the connection level. 450 usually refers to a mailbox-level temporary issue. Both expect retry.
Why does Gmail keep saying 421 try again later?
Gmail uses 421 for rate limiting and reputation-based throttling. Check Google Postmaster Tools for reputation status. Reduce volume and send to engaged users first.
Want this handled for you?
Free 30-minute strategy call. Walk away with a plan either way.