Displaying 1 result from an estimated 1 matches for "auth_client_max_line_length".
2009 Jun 24
3
Auth worker max line size
...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 could not be a bug. Or is there a security
concern at...