diff options
author | Mark Sapiro <mark@msapiro.net> | 2018-07-11 20:14:02 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2018-07-11 20:14:02 -0700 |
commit | 7714812f387346277d6cf10e2ff50488347421a4 (patch) | |
tree | 16e1d24b863a13777fa0ee72bed04df32657c51b | |
parent | e8869cd75753f31cbf8889ea1598356f99b50073 (diff) | |
parent | 20ea51b8bb6ca47a2ea9a9e05eda537a037b3038 (diff) | |
download | mailman2-7714812f387346277d6cf10e2ff50488347421a4.tar.gz mailman2-7714812f387346277d6cf10e2ff50488347421a4.tar.xz mailman2-7714812f387346277d6cf10e2ff50488347421a4.zip |
Added a bit of doc and fixed typos in Defaults.py.in.
-rwxr-xr-x | Mailman/Defaults.py.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 63a8e99f..5e158e5b 100755 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -145,12 +145,14 @@ RECAPTCHA_SECRET_KEY = None # 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 +# If the following is set to Yes, and a web subscribe comes from an IPv4 # address and the IP is listed in Spamhaus SBL, CSS or XBL, the subscription -# will be blocked. +# will be blocked. It will work with IPv6 addresses if Python's py2-ipaddress +# module is installed. The module can be installed via pip if not included +# in your Python. BLOCK_SPAMHAUS_LISTED_IP_SUBSCRIBE = No -# IF the following is set to Yes, and a subscriper uses a domain that is +# If the following is set to Yes, and a subscriber uses a domain that is # listed in the Spamhaus DBL, the subscription will be blocked. BLOCK_SPAMHAUS_LISTED_DBL_SUBSCRIBE = No |