# -*- python -*-
+# -*- coding: utf-8 -*-
# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc.
#
DEFAULT_ARCHIVE = Off
DEFAULT_MAX_MESSAGE_SIZE = 1024 # KB
DEFAULT_ADMIN_MEMBER_CHUNKSIZE = 100
+DEFAULT_BOUNCE_UNRECOGNIZED_GOES_TO_LIST_OWNER = No
# footer
DEFAULT_MSG_FOOTER = """{{postfix.mailman.default_footer}}"""
# 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 %}
+]