aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Defaults.py.in
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2018-06-04 18:02:12 -0700
committerMark Sapiro <mark@msapiro.net>2018-06-04 18:02:12 -0700
commitb0fda7ec4f1927bae0f930500dea17294b5bbf20 (patch)
tree96432701160ac405b0b4646e5cb43a35d1df1d54 /Mailman/Defaults.py.in
parente3da06f338f4ebf125de481bbad5ae7d2bf7a282 (diff)
downloadmailman2-b0fda7ec4f1927bae0f930500dea17294b5bbf20.tar.gz
mailman2-b0fda7ec4f1927bae0f930500dea17294b5bbf20.tar.xz
mailman2-b0fda7ec4f1927bae0f930500dea17294b5bbf20.zip
Added BLOCK_SPAMHAUS_LISTED_IP_SUBSCRIBE Feature
Diffstat (limited to 'Mailman/Defaults.py.in')
-rwxr-xr-xMailman/Defaults.py.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index fc72ef0d..a124832d 100755
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -142,9 +142,14 @@ RECAPTCHA_SECRET_KEY = None
# in the installation. This supplements the individual list's ban_list.
# For example, to ban xxx@aol.com and any @gmail.com address beginning with
# yyy, set
-# GLOBAL_BAN_LIST = ['xxx@aol.com', '^yyy.*@gmail\.com$']
+# GLOBAL_BAN_LIST = ['xxx@aol\.com', '^yyy.*@gmail\.com$']
GLOBAL_BAN_LIST = []
+# IF the following is set to Yes, and a web subscribe comes from an IPv4
+# address and the IP is listed in Spamhaus ZEN, the subscription will be
+# blocked.
+BLOCK_SPAMHAUS_LISTED_IP_SUBSCRIBE = No
+
# Command that is used to convert text/html parts into plain text. This
# should output results to standard output. %(filename)s will contain the
# name of the temporary file that the program should operate on.