From: Timo Sirainen Date: Fri, 28 Feb 2025 10:12:03 +0000 (+0200) Subject: auth: For Pro edition, default to service_client_limit=16384 X-Git-Tag: 2.4.1~94 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a13826613bde0e206c12cfdb94a211b12eff4b5;p=thirdparty%2Fdovecot%2Fcore.git auth: For Pro edition, default to service_client_limit=16384 This is needed to avoid warnings at startup due to the previous changes. --- diff --git a/src/auth/auth-settings.c b/src/auth/auth-settings.c index 2ea0cfac1f..2ab2bac1e4 100644 --- a/src/auth/auth-settings.c +++ b/src/auth/auth-settings.c @@ -27,6 +27,9 @@ struct service_settings auth_service_settings = { .drop_priv_before_exec = FALSE, .process_limit = 1, +#ifdef DOVECOT_PRO_EDITION + .client_limit = 16384, +#endif .unix_listeners = ARRAY_INIT, .fifo_listeners = ARRAY_INIT,