SMTP
"SMTP Error 441" isn't a real RFC reply code. It maps to enhanced status 4.4.1 (no answer from host) or AuthSMTP's over-quota error. Here's how to fix each.
Updated Jul 1, 2026
The short answer
"SMTP Error 441" is not a standard SMTP reply code — RFC 5321 defines no 441. It usually means one of two things: the enhanced status code 4.4.1 ("No answer from host," RFC 3463), a transient failure where your server couldn't reach the recipient's mail host, or AuthSMTP's provider-specific 441 meaning your account is over its data quota. Both are temporary; retry or check connectivity/quota.
No. The Simple Mail Transfer Protocol (RFC 5321 §4.2.3) defines only a handful of 4yz Transient Negative Completion reply codes — 421, 450, 451, 452, 455 and a few auth-related ones. There is no reply code 441 in the standard. A mail server will never legitimately answer a command with a 3-digit 441.
So when you see "441," it's almost always one of two different things wearing the same label:
4.4.1 — a RFC 3463 Delivery Status Notification code, not a reply code. The dot gets dropped in logs and tooling, leaving "441." This is the common case.441 — most notably AuthSMTP, which uses 441 to mean "Account is at / over data quota."Identifying which one you have is the whole job. Look at the raw log line.
If your logs show dsn=4.4.1, status=4.4.1, or a deferred message citing 4.4.1, this is RFC 3463's X.4.1: "No answer from host." Per the RFC: "The outbound connection attempt was not answered, because either the remote system was busy, or was unable to take a call. This is useful only as a persistent transient error."
In plain terms: your server tried to open an SMTP connection to the recipient's mail host and got no response. It's the X.4 (Network and Routing) class — a connectivity problem, not a rejection of your message content. Your MTA will keep retrying on its normal schedule.
dig MX recipientdomain.com, then test the connection: telnet <mx-host> 25 (or openssl s_client -starttls smtp -connect <mx-host>:25 for a TLS-aware check on the same relay port). No banner = the remote side is down or filtering you.If you relay through AuthSMTP and see 441, it means "Account is at / over data quota." Each AuthSMTP plan has a monthly message and data allowance, and a single 1 MB attachment can consume 1–1.5 MB of quota. Once you hit the cap, new mail is refused with 441.
Don't chase fixes for unrelated codes. A genuine 441 is not an authentication failure (those are 535/530), not a hard bounce for a bad address (that's 550/5.1.1), and not about TLS ports. There is no Gmail/Workspace "Less Secure Apps" angle here — if you landed on this page debugging Gmail auth, you want an App Password or OAuth2, not this code.
With Courier
References
FAQ
No. RFC 5321 §4.2.3 defines no 441 reply code. "441" is normally the enhanced status code 4.4.1 ("No answer from host," RFC 3463) with the dots stripped, or a provider-specific code such as AuthSMTP's "account over data quota."
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 (X.4.1); 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.