SMTP
"SMTP Error 422" isn't a real reply code — it's the 4.2.2 "mailbox full" enhanced status (RFC 3463), sent in a 452 soft bounce. Here's how to handle it.
Updated Jul 1, 2026
The short answer
"SMTP Error 422" is not a real SMTP reply code — RFC 5321 defines no 422. It's a mix-up of the enhanced status code 4.2.2 ("mailbox full," RFC 3463), which mail servers send inside a 452 reply when the recipient's inbox is over quota. It's a temporary soft bounce: retry with backoff, and the message delivers once the recipient frees space.
No. RFC 5321 defines the transient (4yz) reply codes 421, 450, 451, 452, and 455 — there is no 422. Separately, RFC 4954 (the SMTP Authentication extension) defines two more AUTH-specific transient codes, 432 and 454, which are unrelated to mailbox delivery. None of these RFCs — nor RFC 3463 — define a 422. So "SMTP Error 422" is almost always one of two things:
4.2.2 ("mailbox full"), defined in RFC 3463 §3.3. In a real bounce this travels inside a reply line, e.g. 452 4.2.2 The email account that you tried to reach is over quota. The 452 is the reply code; the 4.2.2 is the detail — and dropping the dots turns it into a fictional "422."The earlier version of this page called 422 a permanent error where "the connection drops during transmission." That's inaccurate on both counts — the underlying 4.2.2 is a transient failure and the SMTP session completes normally; the server just refuses that one message with a 4yz response.
Per RFC 3463, X.2.2 means "the mailbox is full because the user has exceeded a per-mailbox administrative quota or physical capacity. The general semantics implies that the recipient can delete messages to make more space available." The leading 4 marks it as a persistent transient failure: the message is not lost, the address is not invalid, and delivery should succeed once space is freed.
Note the contrast with the permanent variant 5.2.2 (often paired with a 552 reply), which signals a mailbox that won't accept the message even on retry. Don't confuse "mailbox full" (recipient-side quota) with 452 "insufficient system storage" without an enhanced code, which is a problem on the receiving server, not the recipient's inbox.
Because this is recipient-side and temporary, the sender usually can't resolve it directly — the goal is to retry sensibly without burning your reputation:
4.2.2 failures for the same address over several days (or it later returns a 5.x.x permanent bounce), pause sending to it.With Courier
References
FAQ
No. There is no real 422 reply code; the condition behind it is the enhanced status 4.2.2 ("mailbox full"), which RFC 3463 classifies as a persistent transient (4xx) failure. The message should deliver on retry once the recipient frees space. The permanent counterpart is 5.2.2.
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.3 (X.2.2); RFC 5321 §4.2, §4.5.4; RFC 4954 §6. Last reviewed Jul 1, 2026. Courier is not affiliated with third-party providers; error behavior may vary by implementation.
© 2026 Courier. All rights reserved.