SMTP 221 Closing Connection vs 501 Syntax Error in Parameters
SMTP 221 (Closing Connection) is a 2xx Positive Completion response, while 501 (Syntax Error in Parameters) is a 5xx Permanent Negative response. 221 indicates that the server is closing the transmission channel. This is the normal response to the QUIT command, indicating a graceful end to the SMTP session. In contrast, 501 means that the command was recognized but the parameters or arguments are syntactically invalid. The server understood what you wanted to do but could not parse the details.
คำอธิบาย
The server is closing the transmission channel. This is the normal response to the QUIT command, indicating a graceful end to the SMTP session.
เมื่อคุณพบเห็น
After sending the QUIT command at the end of a mail session. The server acknowledges the disconnect and the TCP connection will be closed.
วิธีแก้ไข
No fix needed — this is the expected response when ending an SMTP session. If you see this unexpectedly, the server may be shutting down or timing out idle connections.
คำอธิบาย
The command was recognized but the parameters or arguments are syntactically invalid. The server understood what you wanted to do but could not parse the details.
เมื่อคุณพบเห็น
When a command like MAIL FROM or RCPT TO has a malformed email address, missing angle brackets, or invalid characters in the arguments.
วิธีแก้ไข
Review the parameter format — email addresses should be enclosed in angle brackets (e.g., <[email protected]>). Check for stray spaces, missing colons, or encoding issues.
ความแตกต่างหลัก
221 is a 2xx Positive Completion response, while 501 is a 5xx Permanent Negative response.
SMTP 221: The server is closing the transmission channel. This is the normal response to the QUIT command, indicating a graceful end to the SMTP session.
SMTP 501: The command was recognized but the parameters or arguments are syntactically invalid. The server understood what you wanted to do but could not parse the details.
You encounter 221 when after sending the QUIT command at the end of a mail session. The server acknowledges the disconnect and the TCP connection will be closed.
You encounter 501 when when a command like MAIL FROM or RCPT TO has a malformed email address, missing angle brackets, or invalid characters in the arguments.
ควรใช้อันไหนเมื่อไร
For 221 (Closing Connection): No fix needed — this is the expected response when ending an SMTP session. If you see this unexpectedly, the server may be shutting down or timing out idle connections. For 501 (Syntax Error in Parameters): Review the parameter format — email addresses should be enclosed in angle brackets (e.g., <[email protected]>). Check for stray spaces, missing colons, or encoding issues.