- January 2026
- Engineering Memo · External Release
Retry Pressure: The Silent Killer of SMTP Reputation at Scale
Sender reputation problems are easy to identify when they produce immediate blocks — a Spamhaus listing, a Gmail bounce storm, an ISP rejection that surfaces in delivery reports the same day it occurs. These events are visible. They interrupt operations in ways that demand attention.
Retry pressure operates differently. It is a degradation pattern that develops over weeks, produces no alerts, and is consistently misattributed to content changes, list aging, or seasonal fluctuations. By the time it becomes visible in inbox placement metrics, the reputation damage has been accumulating for months. This note describes the mechanism, how to identify it, and why it is structurally more dangerous than acute reputation events.
The Mechanism
Every major ISP uses rate limiting as a primary tool for managing inbound connection load. When an ISP returns a 421 or 451 response code to an incoming SMTP connection, it is signaling one of two things: the receiving infrastructure is under load, or the sending IP has exceeded the connection rate the ISP considers appropriate for its reputation level.
In either case, the receiving ISP has asked the sender to wait before retrying. The MTA configuration determines what happens next. In a correctly configured high-volume environment, the MTA backs off — increasing the retry interval, reducing simultaneous connection attempts to the affected ISP, and allowing the deferral queue to clear gradually. In a misconfigured environment, the MTA retries at the same or higher rate, interpreting the deferral as a temporary condition to be overcome through persistence.
From the ISP's perspective, this looks like exactly the behavior associated with bulk senders who disregard rate signals — spammers, in many cases. The ISP's reputation system records the pattern. The next sending day begins with the ISP applying slightly stricter rate limits to this sender's IP range. The cycle repeats, with rate limits tightening incrementally each day, until delivery rates degrade to the point where the sending organization notices something is wrong.
The insidious quality of retry pressure is that every individual retry looks legitimate. Authentication passes. Content is clean. The sending domain has history. But the pattern of sends — the density, the timing, the response to ISP signals — is what ISP reputation systems actually evaluate at scale. Pattern is reputation.
Configuration Variables That Create Pressure
Retry interval after first deferral. The time between a deferral response and the first retry attempt is the most consequential variable. Default configurations in many MTA deployments use intervals of one to five minutes. For high-volume operations directing millions of messages per day toward a single ISP, a five-minute retry interval applied to all deferred messages produces a wall of reconnection attempts precisely when the ISP has indicated it wants reduced traffic. Intervals of fifteen to thirty minutes for major ISPs — with ISP-specific configuration — reduce pressure substantially.
Backoff multiplier absence. A fixed retry interval is a retry pressure engine at scale. Exponential backoff — where each successive retry uses a longer interval than the previous — is the standard for high-volume operations. A sender retrying at 15 minutes, then 30 minutes, then 60 minutes produces a different ISP-visible pattern than a sender retrying at 15-minute intervals indefinitely. The former looks like a properly managed queue. The latter looks like persistent pressure.
Maximum concurrent connections per ISP. SMTP relay configuration specifies the maximum number of simultaneous connections permitted to each destination domain or MX host. When this limit is set too high relative to the ISP's current tolerance for this sender's reputation level, every deferral event is compounded by the number of active connections — all of which may be attempting retries simultaneously.
Identifying Retry Pressure in Live Infrastructure
The primary signal is ISP-specific high deferral rate diagnosis trend, not aggregate delivery rate. An aggregate delivery rate of 97% can coexist with a Gmail-specific deferral rate that has increased from 3% to 8% over four weeks. The aggregate metric obscures the ISP-specific degradation until it becomes severe enough to affect the total.
Secondary signals include: retry queue depth that grows over consecutive sending days rather than clearing between jobs; deferral response codes that shift from 451 (temporary failure, try again) to 421 (connection refused, current rate limit exceeded); and delivery latency increases for deferred messages that eventually succeed — messages taking six hours to deliver rather than thirty minutes indicates extended retry queues, not content problems.
Remediation requires both configuration correction and a period of reduced volume. Configuration alone does not immediately repair the reputation signals already registered by ISP systems. Those signals age out over weeks of correct behavior — which is why early detection is operationally important. A retry pressure pattern identified at week two costs one to two weeks to remediate. The same pattern identified at month three costs months.
Measuring Retry Pressure in Your Infrastructure
Retry pressure is quantifiable. The primary measurement is ISP-specific deferral rate trend over rolling 7-day and 30-day windows. A Gmail deferral rate that is increasing 0.5% per week over four consecutive weeks is a retry pressure signal — even if the absolute rate is still within tolerable bounds. The trend is diagnostic; the absolute value is not.
Secondary measurements include: average time-to-delivery for messages that eventually succeed (increasing delivery latency on deferred messages is a queue depth signal), queue depth at end-of-day versus beginning-of-day for Gmail-bound messages (growing overnight queues indicate retry accumulation), and the ratio of 421 responses to 250 responses per sending session per IP.
Configuration Remediation
The configuration changes that address retry pressure are specific: increase retry-after for major ISPs to 15-30 minutes minimum; implement exponential backoff by adding progressive retry-after intervals in smtp-pattern-list configuration; reduce max-smtp-out by 25-40% for the affected ISP; and implement ISP-specific domain blocks rather than global defaults.
Critically, these changes should be implemented together, not individually. Increasing retry-after alone without reducing max-smtp-out addresses timing but not volume. The combination of lower connection count and longer retry intervals produces a substantially different ISP-visible traffic pattern than either change alone.
The Recovery Window
Once retry pressure has degraded ISP reputation signals, recovery requires sustained correct behavior over a period proportional to the duration of the pressure. ISP reputation systems have memory — they do not reset immediately when behavior improves. For Gmail, reputation signals typically update over 7-14 day rolling windows. For Microsoft, SNDS data reflects a 60-day history.
The practical implication: a retry pressure pattern that has been active for 8 weeks requires approximately 8-12 weeks of correct behavior to fully recover. Infrastructure operators who correct the configuration and expect immediate improvement will be disappointed and may make further changes that disrupt the recovery. Patience and monitoring are the correct response during the recovery phase.

