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.
Description
The server is closing the transmission channel. This is the normal response to the QUIT command, indicating a graceful end to the SMTP session.
Quand vous le voyez
After sending the QUIT command at the end of a mail session. The server acknowledges the disconnect and the TCP connection will be closed.
Comment résoudre
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.
Description
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.
Quand vous le voyez
When a command like MAIL FROM or RCPT TO has a malformed email address, missing angle brackets, or invalid characters in the arguments.
Comment résoudre
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.
Différences clés
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.
Quand utiliser lequel
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.