search for: cmd_auth

Displaying 2 results from an estimated 2 matches for "cmd_auth".

2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
...ent-authenticate.c dovecot-1.0-test23/src/pop3-login/client-authenticate.c --- dovecot-1.0-test23.vanilla/src/pop3-login/client-authenticate.c 2004-06-24 12:14:14.000000000 +0400 +++ dovecot-1.0-test23/src/pop3-login/client-authenticate.c 2004-07-01 11:38:33.000000000 +0400 @@ -338,3 +338,49 @@ int cmd_auth(struct pop3_client *client, return TRUE; } + +int cmd_apop(struct pop3_client *client, const char *args) +{ + const char *error; + struct auth_request_info info; + string_t *apop_data; + + if (!client->apop_challenge) { + client_send_line(client, "-ERR Unknown command.");...
2004 Oct 07
0
[PATCH] change old style SASL discovery code
...nt-authenticate.c dovecot-1.0-test46/src/pop3-login/client-authenticate.c --- dovecot-1.0-test46.vanilla/src/pop3-login/client-authenticate.c 2004-09-15 17:19:12.000000000 +0400 +++ dovecot-1.0-test46/src/pop3-login/client-authenticate.c 2004-10-05 20:43:18.000000000 +0400 @@ -284,16 +284,19 @@ int cmd_auth(struct pop3_client *client, string_t *buf; size_t argslen; - if (*args == '\0' && - auth_client_find_mech(auth_client, "NTLM") != NULL) { - /* This is needed to allow MS Outlook to use NTLM - authentication. Sometimes this kludge is called - "old-st...