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.