SMTP 252 Cannot Verify User vs 556 Domain Does Not Accept Mail
SMTP 252 (Cannot Verify User) is a 2xx Positive Completion response, while 556 (Domain Does Not Accept Mail) is a 5xx Permanent Negative response. 252 indicates that the server cannot verify the user but will accept the message and attempt delivery. This is often returned in response to VRFY when the server intentionally hides user information. In contrast, 556 means that the destination domain does not accept mail and no forwarding address is available. The domain's DNS configuration (null MX record) explicitly indicates it does not receive email.
Description
The server cannot verify the user but will accept the message and attempt delivery. This is often returned in response to VRFY when the server intentionally hides user information.
When You See It
When using the VRFY command to check if a recipient exists. The server refuses to confirm or deny the address, typically as a spam-prevention measure.
How to Fix
No fix needed — the server will still attempt delivery. If you need to verify addresses, contact the mail administrator or rely on bounce-back messages instead.
Description
The destination domain does not accept mail and no forwarding address is available. The domain's DNS configuration (null MX record) explicitly indicates it does not receive email.
When You See It
When sending to a domain that has published a null MX record (RFC 7505) in DNS, explicitly declaring that it does not accept any email messages.
How to Fix
Verify the domain's MX records — a null MX (priority 0, empty host) means the domain intentionally rejects all mail. Contact the recipient through an alternative channel.
Key Differences
252 is a 2xx Positive Completion response, while 556 is a 5xx Permanent Negative response.
SMTP 252: The server cannot verify the user but will accept the message and attempt delivery. This is often returned in response to VRFY when the server intentionally hides user information.
SMTP 556: The destination domain does not accept mail and no forwarding address is available. The domain's DNS configuration (null MX record) explicitly indicates it does not receive email.
You encounter 252 when when using the VRFY command to check if a recipient exists. The server refuses to confirm or deny the address, typically as a spam-prevention measure.
You encounter 556 when when sending to a domain that has published a null MX record (RFC 7505) in DNS, explicitly declaring that it does not accept any email messages.
When to Use Which
For 252 (Cannot Verify User): No fix needed — the server will still attempt delivery. If you need to verify addresses, contact the mail administrator or rely on bounce-back messages instead. For 556 (Domain Does Not Accept Mail): Verify the domain's MX records — a null MX (priority 0, empty host) means the domain intentionally rejects all mail. Contact the recipient through an alternative channel.