What is connection throttling, and how can you detect it?

Still have a question, spotted an error, or have a better explanation or a source we should cite?

Connection throttling is when a receiving mail server limits how many simultaneous connections or messages per time period it'll accept from your IP address. It's a standard self-defense mechanism that receiving servers use to manage load and filter spam. When you hit the limit, excess connection attempts are rejected or delayed.

This is different from a blocklist listing or a permanent rejection. Throttling is a rate limit, not a ban. Most of the time, your ESP handles it automatically by spreading retries over time rather than hammering the connection limit.

The SMTP signals that indicate throttling:

  • 421 response codes with messages like "Too many connections from your IP" or "Connection rate exceeded"
  • Increasing connection delays where earlier sends complete faster than later ones in the same campaign
  • Messages consistently deferring to the same provider while other providers accept normally
  • Slow delivery queues without actual failures (messages eventually deliver but much more slowly than usual)

Common causes: sudden volume spikes, burst sending patterns, poor infrastructure separation (sending marketing and transactional from the same IP), or warming a new IP faster than the receiving server's policy allows.

What to do about it: reduce your connection concurrency for that receiver. Most ESPs do this automatically when they detect throttling signals. If you're managing your own MTA, tune your max_connections_per_ip and per-domain rate limits to stay under the throttle thresholds. Spreading sends over a longer window rather than bursting is the most reliable fix.

The difference from IP reputation problems: throttling is usually symmetric across all senders hitting the same rate limit. A reputation problem produces rejections specifically targeted at your IP or domain.

Contributors

Who worked on this answer

Every name links to their profile. Every company links to their site. Real people, real accountability.

Ask an AI · tailored to your setup

Diagnose my throttling situation

I think I'm hitting connection throttling. Here's what I'm seeing: - The SMTP error code and message: e.g. 421 Too many connections from your IP - Which receiving provider is throttling me: Gmail / Outlook / Yahoo / corporate filter / unsure - My sending infrastructure: ESP name / own MTA / hybrid - Whether I'm on a shared or dedicated IP: shared / dedicated - My current sending volume and pattern: e.g. sending 50,000 emails in a 2-hour burst daily - Whether I've recently increased volume or changed sending patterns: yes, describe / no - Whether messages are eventually delivering (just slowly) or failing entirely: slowly / failing Help me confirm this is throttling vs. a reputation issue, and walk me through what to adjust in my sending configuration.

Edit the yellow boxes, then send to the AI of your choice.