# -*- python -*-
+# -*- coding: utf-8 -*-
# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc.
#
# DMARC, DKIM-compatibility
REMOVE_DKIM_HEADERS = 1 # remove DKIM headers for lists where From: is changed
DEFAULT_DMARC_MODERATION_ACTION = 1 # Munge From
+
+# Spammer protection
+SUBSCRIBE_FORM_SECRET = "{{postfix.mailman.form_secret}}"
+CAPTCHAS = [
+{% for item in postfix.mailman.captcha %}
+ ('{{item.question}}', [
+ {% for answer in item.answers %}
+ '{{answer}}',
+ {% endfor %}
+ ]),
+{% endfor %}
+]