From 67e6cc9cca1d336c5c8e76c209e291ee5446eb3a Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Thu, 5 Jun 2025 12:16:56 +0100 Subject: [PATCH] mailman: limit smtp rcpts to workaround gmx.de limits gmx.de error: https://postmaster.gmx.net/en/case?c=r0407 --- cookbooks/mailman/templates/default/mm_cfg.py.erb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/cookbooks/mailman/templates/default/mm_cfg.py.erb b/cookbooks/mailman/templates/default/mm_cfg.py.erb index 53b4990d4..1e6017910 100644 --- a/cookbooks/mailman/templates/default/mm_cfg.py.erb +++ b/cookbooks/mailman/templates/default/mm_cfg.py.erb @@ -8,14 +8,14 @@ # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software +# along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 USA @@ -113,3 +113,6 @@ 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