Displaying 6 results from an estimated 6 matches for "pop3_client".
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
....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.");
+ return TRUE;
+ }...
2003 Dec 20
1
Bugfix for use with "Opera mail" and "AnalogX"
Dear developers,
[ Please CC me as I'm not subscribed to this list. ]
In src/pop3-login/client.c:
void client_send_line(struct pop3_client *client, const char *line)
{
o_stream_send_str(client->output, line);
o_stream_send(client->output, "\r\n", 2);
}
Called as 'client_send_line(client "+OK dovecot");'.
This function sends two packets to the client. It appears Opera mail
and AnalogX prox...
2012 Feb 13
5
IMAP-proxy or not with sogo webmail and dovecot backend
We've been collecting some stats to see what kind of benefits
UP/SquirrelMail's IMAP Proxy in for our SOGo webmail users. Dovecot is
running in High-performance mode http://wiki2.dovecot.org/LoginProcess
with authentication caching http://wiki2.dovecot.org/Authentication/Caching
During the weekend two servers (webmail3 and webmail4) has been running
with local imapproxy and two servers
2004 Jul 22
0
[PATCH] POP3 CAPA command RFC violation
...ate.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 was scrubbed...
Nam...
2004 Oct 07
0
[PATCH] change old style SASL discovery code
...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-style SASL discovery&...
2003 Nov 04
0
PATCH: make local IP address available to auth modules
The attached patch makes the local IP address to which the client
connected available to the authentication modules; i.e., the local IP
address is available for substitution as %i for the mysql and pgsql
modules. We needed this feature to support thousands of our legacy
accounts which are authenticated by username/local_part (not the full
email address) and IP address (one per domain).
Timo,