SMTP
SMTP 431 is a temporary Exchange rejection — recipient server is low on resources. Queue and retry; if it persists, contact the recipient admin.
Updated Jul 1, 2026
The short answer
SMTP 431 is a temporary (4xx) "out of memory / insufficient system resources" reply, sent mainly by Microsoft Exchange and Windows SMTP servers — not a code defined in RFC 5321 (which uses 452). It means the receiving server is low on disk, memory, or queue capacity, often via Exchange "back pressure" or a Store-level disk-full check. It is the recipient server's problem: queue and let your sender auto-retry; persistent 431s warrant contacting the recipient's admin.
SMTP Error 431 is a temporary failure returned by the receiving mail server, typically reading 431 4.3.1 STOREDRV; mailbox disk is full or 431 4.3.1 STOREDRV.Submit.Exception on Microsoft Exchange. The leading 4 puts it in the transient (4xx) class, so the message is not permanently rejected: your sending server should queue it and retry.
Important: this is the receiving server telling you it is out of resources. It is not caused by "too many recipients," and there is nothing in the message body or recipient list you can edit to make 431 go away from the sender side.
431 signals that the destination server lacks the system resources to accept the message right now. On Microsoft Exchange there are actually two distinct mechanisms that can produce a 431/452 4.3.1 response, and they're diagnosed differently:
431 4.3.1 STOREDRV; mailbox disk is full, logged in the message tracking log as a SUBMITDEFER event with source STOREDRIVER.431/452 4.3.1, logging Resource Manager Event IDs 15004/15005 (resource pressure increased/decreased) and 15006/15007 (critically low disk/memory) — not SUBMITDEFER/STOREDRIVER. (Microsoft / Exchange back pressure)Both mechanisms are ultimately about running low on disk or memory, and freeing space helps either one — but they trip independently and leave different log signatures, so which one fired determines where to look first.
Note on accuracy: 431 is not listed in RFC 5321. The base SMTP standard expresses this condition as 452 ("Requested action not taken: insufficient system storage," RFC 5321 §4.2.3). 431 is a vendor extension, used most notably by Microsoft Exchange and the Windows SMTP service. The attached enhanced status 4.3.1 maps to RFC 3463's "Mail system full" — a system-wide shortage, distinct from 4.2.2 "Mailbox full," which is a single recipient over quota.
If you are the sender:
If you administer the receiving Exchange server:
431 4.3.1 STOREDRV; mailbox disk is full (tracked as a SUBMITDEFER/STOREDRIVER event), free disk space on whichever drive is low — the mailbox database/log volume or the system TEMP drive. This check uses a fixed low-space threshold rather than a percentage, so it can trip even on a large volume that still has meaningful free space in relative terms.DatabaseCheckPointDepthMax in EdgeTransport.exe.config, default 384MB). At default settings the transaction-log drive's high-utilization threshold is a flat ~1152MB reserve; DatabaseCheckPointDepthMax only feeds into that formula if you've customized it away from the default.SUBMITDEFER for STOREDRV) to confirm which mechanism tripped before applying a fix. (Microsoft / Exchange back pressure)Sending through Courier or another API? Provider-managed sending infrastructure already applies RFC-compliant retry/backoff for 4xx codes like 431/452, so transient resource errors on the recipient side are usually retried for you. Watch your delivery logs to confirm eventual delivery, and treat a sustained 431 against a specific recipient domain as that domain's operational issue, not a content or list problem.
References
FAQ
Temporary. The leading digit 4 places it in SMTP's transient-failure class (4xx) per RFC 5321, so the message should be queued and retried automatically, not bounced. It usually clears once the receiving server recovers its disk, memory, or queue resources.
One API, every provider
Courier connects to your email, SMS, and push providers, handles retries and failover, and surfaces delivery errors in plain language.
Reply-code definitions per RFC 3463 §3.4 (X.3.1); cf. RFC 5321 §4.2.3 (452). Last reviewed Jul 1, 2026. Courier is not affiliated with third-party providers; error behavior may vary by implementation.
© 2026 Courier. All rights reserved.