SMTP

SMTP 211 System Status vs 503 Bad Sequence

SMTP 211 (System Status) is a 2xx Positive Completion response, while 503 (Bad Sequence) is a 5xx Permanent Negative response. 211 indicates that a system status reply providing information about the mail server's current state. This is typically sent in response to a HELP or system inquiry command. In contrast, 503 means that the commands were sent in the wrong order. SMTP requires a specific command sequence (EHLO, MAIL FROM, RCPT TO, DATA) and this error indicates a step was skipped or repeated.

説明

A system status reply providing information about the mail server's current state. This is typically sent in response to a HELP or system inquiry command.

このコードが表示される場合

When querying the mail server for its status or capabilities. The server is sharing diagnostic or informational details about itself.

解決方法

No fix needed — this is an informational response. If the status indicates a problem, review the server's configuration or contact the mail administrator.

説明

The commands were sent in the wrong order. SMTP requires a specific command sequence (EHLO, MAIL FROM, RCPT TO, DATA) and this error indicates a step was skipped or repeated.

このコードが表示される場合

When sending DATA before RCPT TO, or MAIL FROM before EHLO. The server enforces the correct SMTP command sequence and you have sent a command out of order.

解決方法

Follow the proper SMTP command sequence: EHLO/HELO first, then MAIL FROM, then RCPT TO (one or more), then DATA. Reset with RSET if you need to start over.

主な違い

1.

211 is a 2xx Positive Completion response, while 503 is a 5xx Permanent Negative response.

2.

SMTP 211: A system status reply providing information about the mail server's current state. This is typically sent in response to a HELP or system inquiry command.

3.

SMTP 503: The commands were sent in the wrong order. SMTP requires a specific command sequence (EHLO, MAIL FROM, RCPT TO, DATA) and this error indicates a step was skipped or repeated.

4.

You encounter 211 when when querying the mail server for its status or capabilities. The server is sharing diagnostic or informational details about itself.

5.

You encounter 503 when when sending DATA before RCPT TO, or MAIL FROM before EHLO. The server enforces the correct SMTP command sequence and you have sent a command out of order.

どちらをいつ使うか

For 211 (System Status): No fix needed — this is an informational response. If the status indicates a problem, review the server's configuration or contact the mail administrator. For 503 (Bad Sequence): Follow the proper SMTP command sequence: EHLO/HELO first, then MAIL FROM, then RCPT TO (one or more), then DATA. Reset with RSET if you need to start over.

詳しく見る