search for: max_inbuf_size

Displaying 5 results from an estimated 5 matches for "max_inbuf_size".

2009 Jun 24
3
Auth worker max line size
...entication scheme with Dovecot and PAM. That involves sending really large base64 encoded data as the IMAP password, and I have hit a line limit in Dovecot, with AUTH_WORKER_MAX_LINE_LENGTH set to 1024. This limit is especially frustrating since other parts of the software use much larger limits: MAX_INBUF_SIZE 4096 MAX_IMAP_LINE 8192 AUTH_CLIENT_MAX_LINE_LENGTH 8192 I had to make the patch attached below to get my authentication working. I can live with this local patch, but given the much more liberal limits of MAX_INBUF_SIZE at 4096 makes we wonder if this 1024 limit on AUTH_WORKER_MAX_LINE_LENGTH c...
2003 Jun 15
1
a new error message
hi, we've got the following error: --------- The current command did not succeed. The mail server responded: Error in IMAP command UID: Too long argument.." --------- -- Levente "Si vis pacem para bellum!"
2003 Aug 14
1
IMAP error after login
Hello, I'm having a slight problem with Dovecot (0.99.10-0.rc2, on Debian woody). When using mozilla 1.4, there is an error message from the mailer just after login, but nothing in dovecot logs. "Alert The current command did not succeed. The mail server responded: Error in IMAP command UID: Too long argument.." How could I fix this problem ? Thanks, -- Nico J'ai une panne de
2019 Jan 04
1
Feature request: client bind address for replication
...er = server; conn->fd = doveadm_connect_with_default_port(server->name, - doveadm_settings->doveadm_port); + doveadm_settings->doveadm_port,doveadm_settings->doveadm_local_ip); net_set_nonblock(conn->fd, TRUE); conn->input = i_stream_create_fd(conn->fd, MAX_INBUF_SIZE, FALSE); conn->output = o_stream_create_fd(conn->fd, (size_t)-1, FALSE);
2004 Jul 01
3
[PATCH, RFC] add APOP authentication mechanism
....c 2004-07-01 13:57:40.000000000 +0400 @@ -13,6 +13,8 @@ #include "client-authenticate.h" #include "auth-client.h" #include "ssl-proxy.h" +#include "hostpid.h" +#include "imem.h" /* max. length of input command line (spec says 512) */ #define MAX_INBUF_SIZE 2048 @@ -122,6 +124,8 @@ static int client_command_execute(struct return cmd_pass(client, args); if (strcmp(cmd, "AUTH") == 0) return cmd_auth(client, args); + if (strcmp(cmd, "APOP") == 0) + return cmd_apop(client, args); if (strcmp(cmd, "STLS") == 0) re...