From ed8032189c86f49b21880c6b5792241e5e2d007a Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 5 Jun 2025 15:34:08 +0100 Subject: [PATCH] Move SMTP recipient limit to exim so it applies to all mail --- cookbooks/exim/templates/default/exim4.conf.erb | 1 + cookbooks/mailman/templates/default/mm_cfg.py.erb | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/cookbooks/exim/templates/default/exim4.conf.erb b/cookbooks/exim/templates/default/exim4.conf.erb index 3558af884..df58c051f 100644 --- a/cookbooks/exim/templates/default/exim4.conf.erb +++ b/cookbooks/exim/templates/default/exim4.conf.erb @@ -751,6 +751,7 @@ signed_smtp: dkim_identity = ${lc:${address:$h_from:}} dkim_timestamps = 1209600 multi_domain = false + max_rcpt = 20 hosts_try_dane = tls_require_ciphers = <%= node[:ssl][:gnutls_ciphers] %>:%LATEST_RECORD_VERSION <% if node[:exim][:external_interface] -%> diff --git a/cookbooks/mailman/templates/default/mm_cfg.py.erb b/cookbooks/mailman/templates/default/mm_cfg.py.erb index 1e6017910..18701d896 100644 --- a/cookbooks/mailman/templates/default/mm_cfg.py.erb +++ b/cookbooks/mailman/templates/default/mm_cfg.py.erb @@ -113,6 +113,3 @@ SUBSCRIBE_FORM_SECRET='<%= @subscribe_form_secret %>' # Note - if you're looking for something that is imported from mm_cfg, but you # didn't find it above, it's probably in /usr/lib/mailman/Mailman/Defaults.py. - -# Workaround gmx.de 20 recipient limit. -SMTP_MAX_RCPTS = 16 -- 2.39.5