search for: cmd_capa

Displaying 3 results from an estimated 3 matches for "cmd_capa".

2004 Jul 22
0
[PATCH] POP3 CAPA command RFC violation
...client-authenticate.c dovecot-1.0-test29/src/pop3-login/client-authenticate.c --- dovecot-1.0-test29.vanilla/src/pop3-login/client-authenticate.c 2004-07-14 14:48:01.000000000 +0400 +++ dovecot-1.0-test29/src/pop3-login/client-authenticate.c 2004-07-22 13:46:07.000000000 +0400 @@ -37,7 +37,6 @@ int cmd_capa(struct pop3_client *client, if (mech[i].advertise && (client->secured || !mech[i].plaintext)) { str_append_c(str, ' '); - str_append(str, "AUTH="); str_append(str, mech[i].name); } } -------------- next part -------------- A non-text attachment...
2005 May 26
1
imaps tls/ssl and stupid clients
We have been using dovecot now as replacement for qpopper for over 2 weeks and it's working nicely. I have now tried to enable ssl/tls for myself and other inhouse users which also works fine. But the problem is that I use an uncertified certificate. Which is not a problem for kmail, as it just pops up a box asking whether I want to accept the certificate or not. But apparently, some
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
...n/client-authenticate.h dovecot-1.0-test23/src/pop3-login/client-authenticate.h --- dovecot-1.0-test23.vanilla/src/pop3-login/client-authenticate.h 2003-01-30 22:52:39.000000000 +0300 +++ dovecot-1.0-test23/src/pop3-login/client-authenticate.h 2004-07-01 11:38:33.000000000 +0400 @@ -5,5 +5,6 @@ int cmd_capa(struct pop3_client *client, int cmd_user(struct pop3_client *client, const char *args); int cmd_pass(struct pop3_client *client, const char *args); int cmd_auth(struct pop3_client *client, const char *args); +int cmd_apop(struct pop3_client *client, const char *args); #endif diff -udrpN -X /u...