Quick Answer

SMTP 4xx codes are temporary failures — the receiving server wants you to retry later. Common codes include 421 (service unavailable), 450 (mailbox unavailable temporarily), 451 (local error), and 452 (insufficient storage). Your email server should automatically retry 4xx errors. If deferrals persist for hours or days, investigate rate limiting, greylisting, reputation issues, or server configuration problems.

Every SMTP 4xx Deferral Code Explained with Fixes

By Braedon·Mailflow Authority·Troubleshooting·Updated 2026-03-31

Understanding 4xx Codes

SMTP 4xx codes indicate temporary failure. The receiving server might accept this message later — it's asking you to retry.

Structure: 4XY.Z.Z.Z

  • 4 = Temporary failure
  • XY = Category
  • Z.Z.Z = Enhanced status code (detailed reason)

Unlike 5xx (permanent), 4xx errors should trigger automatic retries from your mail server.

421 Codes: Service Unavailable

421 — Try Again Later

Meaning: Server is temporarily refusing connections.

Common messages:

  • "Too many connections from your IP"
  • "Service temporarily unavailable"
  • "Try again later"

Causes:

  • Rate limiting
  • Too many simultaneous connections
  • Server under load
  • Greylisting

Fixes:

  1. Reduce concurrent connections
  2. Implement exponential backoff
  3. Spread sending over longer periods
  4. If greylisting, wait for automatic retry

421 4.7.0 — IP Reputation Warning

Meaning: Your IP has poor reputation and is being rate-limited.

Fixes:

  1. Check Google Postmaster Tools
  2. Verify IP isn't blacklisted
  3. Reduce sending volume
  4. Warm the IP if it's new

421 4.7.28 — Rate Limited

Meaning: Sending too fast for this destination.

Fixes:

  1. Throttle sending to this domain
  2. Spread deliveries across more IPs
  3. Respect provider rate limits

Practitioner note: Gmail and Microsoft are aggressive about rate limiting. If you're seeing 421s, don't fight it — slow down. Trying to force through messages makes things worse.

450 Codes: Mailbox Unavailable (Temporary)

450 4.1.1 — User Not Available

Meaning: Mailbox exists but can't accept mail right now.

Causes:

  • Account suspended temporarily
  • Mailbox offline
  • Server processing delay

Fixes:

  1. Retry automatically (most MTAs do this)
  2. If persistent, treat as potential hard bounce
  3. Consider removing if deferred for 72+ hours

450 4.2.1 — Mailbox Temporarily Disabled

Meaning: Account is disabled but may return.

Fixes:

  1. Retry for standard queue lifetime (24-72 hours)
  2. If still failing, remove from list

450 4.7.1 — Greylisting

Meaning: First-time sender being verified.

How greylisting works:

  1. Unknown sender makes first attempt
  2. Server returns 450, recording the attempt
  3. Legitimate servers retry after a delay
  4. Retry succeeds because server now recognizes the sender

This is normal. Your MTA should handle it automatically.

Signs of greylisting:

  • Initial 450 from a domain
  • Successful delivery 5-15 minutes later
  • Only affects first message to that server

451 Codes: Local Processing Error

451 4.3.0 — Internal Server Error

Meaning: The receiving server had an error processing your message.

Fixes:

  1. Retry automatically
  2. Nothing you can do — it's their issue
  3. If persistent, contact their postmaster

451 4.4.0 — Connection Timeout

Meaning: Connection was dropped or timed out.

Fixes:

  1. Reduce message size
  2. Check network stability
  3. Retry automatically

451 4.7.1 — Temporary Authentication Issue

Meaning: Authentication check encountered a problem.

Causes:

  • DNS timeout during SPF/DKIM check
  • Temporary lookup failure

Fixes:

  1. Usually resolves on retry
  2. Verify your DNS is responding properly
  3. Check for SPF temperror

451 4.3.5 — System Congestion

Meaning: Server is overloaded.

Fixes:

  1. Retry with backoff
  2. Nothing you can do about their load
  3. Will resolve when their system recovers

452 Codes: Storage/Resource Issues

452 4.2.2 — Mailbox Full

Meaning: Recipient's mailbox is over quota.

Fixes:

  1. Retry — they may clear space
  2. If persistent for days, consider removing
  3. Recipient needs to delete email or upgrade storage

452 4.3.1 — Insufficient System Resources

Meaning: Server doesn't have resources to process.

Fixes:

  1. Reduce message size
  2. Retry automatically
  3. Their problem to fix

452 4.5.3 — Too Many Recipients

Meaning: Too many recipients in one message.

Fixes:

  1. Split into smaller batches
  2. Send individually or in smaller groups
  3. Check provider's recipient limits

Provider-Specific 4xx Errors

Gmail

CodeMeaningAction
421 4.7.0IP reputationCheck Postmaster Tools
421 4.7.28Rate limitedSlow down
450 4.2.1Temporary mailbox issueRetry
451 4.3.0Gmail internal errorRetry

Outlook/Microsoft 365

CodeMeaningAction
421 4.7.xThrottlingReduce rate
451 4.7.500Reputation checkCheck SNDS
451 4.4.0TimeoutCheck network
452 4.3.1Resource limitReduce load

Yahoo

CodeMeaningAction
421 4.7.0Temporary rejectionRetry
421 4.7.1Rate limitedSlow down
451 Resources unavailableRetryAutomatic

Handling Persistent 4xx Errors

If the same message keeps getting deferred:

After 1 Hour

  • Normal behavior, especially for greylisting
  • MTAs should be retrying automatically

After 4 Hours

  • Check if it's rate limiting
  • Verify DNS resolves correctly
  • Look at error message for clues

After 24 Hours

  • Investigate specifically
  • Check blacklists
  • Review sender reputation
  • May indicate a blocking issue disguised as deferral

After 72 Hours

  • Treat as a soft bounce
  • Consider removing recipient
  • Report to your ESP if widespread

Practitioner note: Some ISPs use 4xx codes when they really mean 5xx. If the same address defers for 3+ days, they're effectively blocking you but don't want to commit to a hard reject. Remove and move on.

Reducing 4xx Errors

Rate Limiting Prevention

  1. Respect published limits — providers document their thresholds
  2. Use multiple IPs — spread load if sending volume is high
  3. Implement throttling — don't blast as fast as possible
  4. Monitor 421 responses — back off when you see them

Connection Management

Maximum connections per domain:
- Gmail: ~20 concurrent
- Outlook: ~10 concurrent
- Yahoo: ~5-10 concurrent
- Small domains: ~2-5 concurrent

Configure your MTA to respect these limits.

Retry Configuration

Good retry settings:

  • First retry: 15 minutes
  • Subsequent retries: exponential backoff (30m, 1h, 2h, 4h...)
  • Maximum retry time: 72 hours
  • Then bounce as soft failure

Monitoring Deferrals

Track these metrics:

  • Deferral rate by domain — are specific providers problematic?
  • Deferral to delivery ratio — what percentage eventually deliver?
  • Time to delivery — how long are messages queued?
  • Persistent deferrals — messages that never deliver

If deferrals are consistently high or delivery times are long, schedule a consultation — I'll analyze your sending patterns and optimize your delivery.

Sources


v1.0 · March 2026

Frequently Asked Questions

What does SMTP 421 mean?

421 means the server is temporarily unavailable — it's telling you to try again later. Common causes: rate limiting, too many connections, server maintenance, or greylisting.

How long should I retry after 4xx errors?

Most MTAs retry for 24-72 hours with exponential backoff. If deferrals persist beyond a few hours, there may be a persistent issue requiring investigation.

What's the difference between 4xx and 5xx errors?

4xx codes are temporary — retry and the message may be accepted. 5xx codes are permanent — the message is rejected and retrying won't help.

Why do I keep getting 421 too many connections?

You're opening more simultaneous connections than the server allows. Reduce concurrent connections, implement connection pooling, or spread sending across more time/IPs.

What is greylisting and does it cause 4xx errors?

Greylisting temporarily rejects the first delivery attempt from unknown senders. Your server retries, and the second attempt succeeds. It causes initial 4xx errors but is normal behavior.

Want this handled for you?

Free 30-minute strategy call. Walk away with a plan either way.