SMTP 421 Service Not Available vs 452 Insufficient Storage
Both SMTP 421 (Service Not Available) and 452 (Insufficient Storage) belong to the 4xx Transient Negative category. 421 indicates that the SMTP service is not available and the server is closing the transmission channel. This may be sent as a greeting or during a session if the server needs to shut down. Meanwhile, 452 means that the requested action was not taken because the server has insufficient system storage. The server cannot accept more mail until storage is freed.
Описание
The SMTP service is not available and the server is closing the transmission channel. This may be sent as a greeting or during a session if the server needs to shut down.
Когда вы это видите
When connecting to a mail server that is overloaded, undergoing maintenance, or shutting down. The server cannot handle your request right now.
Как исправить
Retry the connection after a delay. If the issue persists, check server status and resources (CPU, memory, disk). Rate limiting or greylisting may also trigger this response.
Описание
The requested action was not taken because the server has insufficient system storage. The server cannot accept more mail until storage is freed.
Когда вы это видите
When the mail server's disk is full or the recipient's mailbox has exceeded its storage quota. The server cannot store additional messages.
Как исправить
If you are the sender, retry later after the recipient frees up space. If you manage the server, clear disk space, increase quotas, or archive old messages.
Ключевые различия
SMTP 421: The SMTP service is not available and the server is closing the transmission channel. This may be sent as a greeting or during a session if the server needs to shut down.
SMTP 452: The requested action was not taken because the server has insufficient system storage. The server cannot accept more mail until storage is freed.
You encounter 421 when when connecting to a mail server that is overloaded, undergoing maintenance, or shutting down. The server cannot handle your request right now.
You encounter 452 when when the mail server's disk is full or the recipient's mailbox has exceeded its storage quota. The server cannot store additional messages.
Когда что использовать
For 421 (Service Not Available): Retry the connection after a delay. If the issue persists, check server status and resources (CPU, memory, disk). Rate limiting or greylisting may also trigger this response. For 452 (Insufficient Storage): If you are the sender, retry later after the recipient frees up space. If you manage the server, clear disk space, increase quotas, or archive old messages.