SMTP

SMTP 354 Start Mail Input vs 552 Exceeded Storage

SMTP 354 (Start Mail Input) is a 3xx Positive Intermediate response, while 552 (Exceeded Storage) is a 5xx Permanent Negative response. 354 indicates that the server is ready to receive the message body. The client should begin sending the email content (headers and body) and terminate with a single line containing only a period (CRLF.CRLF). In contrast, 552 means that the requested mail action was aborted because the recipient's mailbox has exceeded its storage allocation. Unlike the temporary 452, this is a permanent rejection for this specific mailbox.

Mô tả

The server is ready to receive the message body. The client should begin sending the email content (headers and body) and terminate with a single line containing only a period (CRLF.CRLF).

Khi bạn thấy mã này

After sending the DATA command. The server is now waiting for you to type or stream the email message, ending with a dot on its own line.

Cách khắc phục

Send your message content followed by a line with just a period (.) to signal the end. If you get an error after this, check that your message does not contain a bare period on a line by itself within the body.

Mô tả

The requested mail action was aborted because the recipient's mailbox has exceeded its storage allocation. Unlike the temporary 452, this is a permanent rejection for this specific mailbox.

Khi bạn thấy mã này

When the recipient's mailbox is completely full and cannot accept any more messages. The recipient needs to delete old emails or increase their quota.

Cách khắc phục

Notify the recipient through another channel that their mailbox is full. If you are the recipient, delete old messages or contact your mail administrator to increase the storage quota.

Sự khác biệt chính

1.

354 is a 3xx Positive Intermediate response, while 552 is a 5xx Permanent Negative response.

2.

SMTP 354: The server is ready to receive the message body. The client should begin sending the email content (headers and body) and terminate with a single line containing only a period (CRLF.CRLF).

3.

SMTP 552: The requested mail action was aborted because the recipient's mailbox has exceeded its storage allocation. Unlike the temporary 452, this is a permanent rejection for this specific mailbox.

4.

You encounter 354 when after sending the DATA command. The server is now waiting for you to type or stream the email message, ending with a dot on its own line.

5.

You encounter 552 when when the recipient's mailbox is completely full and cannot accept any more messages. The recipient needs to delete old emails or increase their quota.

Khi nào dùng cái nào

For 354 (Start Mail Input): Send your message content followed by a line with just a period (.) to signal the end. If you get an error after this, check that your message does not contain a bare period on a line by itself within the body. For 552 (Exceeded Storage): Notify the recipient through another channel that their mailbox is full. If you are the recipient, delete old messages or contact your mail administrator to increase the storage quota.

Tìm hiểu thêm