oops, the return code is 235 on success, not 234

svn path=/trunk/; revision=8526
This commit is contained in:
Jeffrey Stedfast
2001-03-02 19:20:39 +00:00
parent 1f40b4ba9a
commit cc1623fa89

View File

@ -664,7 +664,7 @@ smtp_auth (CamelSmtpTransport *transport, const char *mech, CamelException *ex)
}
/* check that the server says we are authenticated */
if (!respbuf || strncmp (respbuf, "234", 3)) {
if (!respbuf || strncmp (respbuf, "235", 3)) {
g_free (respbuf);
goto lose;
}