"SMTP 533" isn't a valid RFC 5321 reply code. It's usually a misread of enhanced status 5.3.3 (feature not supported) or codes 452/552. Here's how to tell.
Updated Jul 1, 2026
The short answer
"SMTP Error 533" is not a valid SMTP reply code. RFC 5321 defines no 533 reply, and 533 is not a registered SMTP reply code. The closest authoritative match is the enhanced status code 5.3.3, "System not capable of selected features" (RFC 3463), meaning the destination can't support a feature the message requested. The older "out of disk space" explanation is wrong; storage problems map to 452 or 552. Read the server's full reply text to identify the real code.
No. The SMTP reply-code grammar in RFC 5321 §4.2.3 does not define a 533 reply, and 533 is not a registered SMTP reply code. The permanent (5xx) codes listed in RFC 5321 §4.2.3 are 500, 501, 502, 503, 504, 550, 551, 552, 553, 554, and 555. (Two more 5xx codes, 521 and 556, were added later by RFC 7504; that RFC explicitly notes they were not previously part of standard SMTP.) None of those is 533. So if a tool reports "SMTP Error 533," it is almost always one of two things:
5.3.3 (the dotted three-part code from RFC 3463), accidentally written without the dots.Note that earlier versions of this page (and several third-party sites) claimed 533 means "the recipient server is out of disk space." That is not accurate — there is no standard 533 code, and disk/storage problems are reported by other codes (see below).
If your bounce or log actually contains 5.3.3, RFC 3463 §3.4 defines it precisely:
X.3.3 System not capable of selected features — "Selected features specified for the message are not supported by the destination system. This can occur in gateways when features from one domain cannot be mapped onto the supported feature in another."
In plain terms: the receiving system rejected the message because it asked for an SMTP extension or feature (for example an 8BITMIME, SMTPUTF8, DSN, SIZE, or BINARYMIME capability, or a gateway-specific feature) that the destination cannot honor. The leading 5 means it is a permanent failure — resending the message unchanged will not help.
550 5.3.3 Feature not supported). That text is what tells you the real cause.5.3.3: Stop requesting the unsupported extension. Check the EHLO response from the destination to see which extensions it advertises, then disable the offending option in your client/library (for example, turn off SMTPUTF8/8BITMIME, or send 7-bit/quoted-printable content) and retry.452 ("Requested action not taken: insufficient system storage", per RFC 5321) — retry later. A permanent over-quota mailbox is 552 ("Requested mail action aborted: exceeded storage allocation"). Neither is "533."550 (no such user), 553 (mailbox name not allowed), or 554 (transaction failed / policy) — verify and correct the recipient address rather than treating it as a feature error.With Courier
5.3.3), a storage limit (452/552), or a recipient/policy rejection (550/553/554).References
FAQ
No. RFC 5321 defines 500-504 and 550-555 (plus 521 and 556 added later by RFC 7504); RFC 4954 separately defines AUTH-related codes 530, 534, 535, and 538; RFC 5248 registers 523 (encryption needed for the requested auth mechanism). There is no 557 in any of these RFCs. "533" is usually a misformatted enhanced status code 5.3.3 (RFC 3463) or a vendor-specific label.
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.3); RFC 5321 §4.2.3. Last reviewed Jul 1, 2026. Courier is not affiliated with third-party providers; error behavior may vary by implementation.
© 2026 Courier. All rights reserved.