From e9a5b711ae7c2cda16d0770ec4bed87a148c7d1b Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Mon, 17 Aug 2026 09:25:23 +0200 Subject: [PATCH] Start migrating config to Ansible The real file still lives in /opt/mailman on the host for now, need to migrate whole config into Ansible. --- .../lists/docker_compose/compose.yaml.j2 | 1 - .../lists/docker_compose/mailman-extra.cfg | 13 +++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 b/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 index be0303fe..2a7ffdd8 100644 --- a/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 +++ b/resources/chaosknoten/lists/docker_compose/compose.yaml.j2 @@ -37,7 +37,6 @@ services: - database:database volumes: - /opt/mailman/web:/opt/mailman-web-data - - ./configs/mailman-extra.cfg:/opt/mailman/core/mailman-extra.cfg - ./configs/settings_local.py:/opt/mailman-web/settings_local.py - ./files/templates:/opt/mailman-web/templates environment: diff --git a/resources/chaosknoten/lists/docker_compose/mailman-extra.cfg b/resources/chaosknoten/lists/docker_compose/mailman-extra.cfg index 1ca22f32..29bb00ce 100644 --- a/resources/chaosknoten/lists/docker_compose/mailman-extra.cfg +++ b/resources/chaosknoten/lists/docker_compose/mailman-extra.cfg @@ -4,3 +4,16 @@ [mailman] pending_request_life: 7d + +# This address is the "site owner" address. Certain messages which must be +# delivered to a human, but which can't be delivered to a list owner (e.g. a +# bounce from a list owner), will be sent to this address. It should point to +# a human. +site_owner: listops@hamburg.ccc.de + +[mta] +# remove any pre-existing DKIM headers from mails being forwarded through a +# list +remove_dkim_headers: yes + +# eof