SMTP
SMTP Error 432 (4.7.12 "a password transition is needed") is a transient AUTH failure. Learn the RFC 4954 meaning, the Exchange variant, and how to fix it.
Updated Jul 1, 2026
The short answer
SMTP Error 432 is a temporary AUTH failure. Per RFC 4954, the full code "432 4.7.12 A password transition is needed" is returned to the AUTH command when the account must re-authenticate before the chosen mechanism works again. Fix it by authenticating once with a fresh credential (often via PLAIN over STARTTLS), then updating the stored password in your mail client or sending app.
432 is a transient negative reply (a 4yz code, so the condition is temporary and the action can be retried). Its authoritative meaning is defined in RFC 4954 §6, the SMTP authentication extension:
432 4.7.12 A password transition is needed — This response to the AUTH command indicates that the user needs to transition to the selected authentication mechanism. This is typically done by authenticating once using the PLAIN authentication mechanism.
In other words, 432 is returned during the AUTH handshake, not during recipient delivery. The server is telling the client that the stored credential or authentication state is stale and must be refreshed before the selected SASL mechanism (CRAM-MD5, etc.) will work again. It is closely related to 454 4.7.0 Temporary authentication failure (also RFC 4954), which signals a temporary server-side auth failure that the client should not re-prompt for.
432 to a message like "The recipient's Exchange Server incoming mail queue has been stopped." In that case 432 reflects a halted/paused receive queue on the destination server (maintenance, too many open connections, or admin troubleshooting) rather than an auth problem. Read the enhanced status code and text the server actually returned to tell the two apart — 4.7.12 means auth; a queue/connection message means the Exchange variant.If you received 432 4.7.12 (the RFC meaning — most common from your sending app):
AUTH PLAIN over TLS, then retry the originally selected mechanism in a subsequent session.S: 250 AUTH CRAM-MD5 PLAIN LOGINC: AUTH CRAM-MD5S: 432 4.7.12 A password transition is neededC: AUTH PLAIN <base64 over TLS> # one-time bootstrapS: 235 2.7.0 Authentication successful
If you received the Exchange "queue stopped" variant:
Get-Queue / Resume-Queue) for a stopped/paused queue and resume it; investigate connection limits or maintenance that halted the queue.With Courier
References
FAQ
Temporary. 432 is a 4yz transient negative-completion reply, so the condition is expected to clear and the request can be retried after corrective action (re-authenticating, or waiting for a stopped queue to resume).
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 4954 §6 (432 4.7.12). Last reviewed Jul 1, 2026. Courier is not affiliated with third-party providers; error behavior may vary by implementation.
© 2026 Courier. All rights reserved.