SMTP

SMTP 235 Authentication Successful vs 455 Server Unable to Accommodate

SMTP 235 (Authentication Successful) is a 2xx Positive Completion response, while 455 (Server Unable to Accommodate) is a 4xx Transient Negative response. 235 indicates that the client has been successfully authenticated using the AUTH command. The server will now accept mail commands from this authenticated session. In contrast, 455 means that the server is currently unable to accommodate the requested parameters. This is a general temporary failure indicating the server cannot process the specific request at this time.

描述

The client has been successfully authenticated using the AUTH command. The server will now accept mail commands from this authenticated session.

何时出现

After submitting valid credentials via the AUTH command (LOGIN, PLAIN, or other SASL mechanism). The server has verified your identity and you can now send mail.

如何修复

No fix needed — authentication succeeded. If you expected this but received a different code, double-check your username, password, and the authentication mechanism.

描述

The server is currently unable to accommodate the requested parameters. This is a general temporary failure indicating the server cannot process the specific request at this time.

何时出现

When the server temporarily cannot handle a specific aspect of your request, such as a particular extension or parameter that requires resources not currently available.

如何修复

Retry the command later or try with different parameters. If the error persists, simplify the request or contact the server administrator to check resource availability.

主要区别

1.

235 is a 2xx Positive Completion response, while 455 is a 4xx Transient Negative response.

2.

SMTP 235: The client has been successfully authenticated using the AUTH command. The server will now accept mail commands from this authenticated session.

3.

SMTP 455: The server is currently unable to accommodate the requested parameters. This is a general temporary failure indicating the server cannot process the specific request at this time.

4.

You encounter 235 when after submitting valid credentials via the AUTH command (LOGIN, PLAIN, or other SASL mechanism). The server has verified your identity and you can now send mail.

5.

You encounter 455 when when the server temporarily cannot handle a specific aspect of your request, such as a particular extension or parameter that requires resources not currently available.

何时使用哪个

For 235 (Authentication Successful): No fix needed — authentication succeeded. If you expected this but received a different code, double-check your username, password, and the authentication mechanism. For 455 (Server Unable to Accommodate): Retry the command later or try with different parameters. If the error persists, simplify the request or contact the server administrator to check resource availability.

了解更多