diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-01-30 13:52:57 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-01-30 13:52:57 +0900 |
commit | c0e8bb68ec685ac9e38e1993b4054d4707486bf9 (patch) | |
tree | 79bc7ae61f91d9ccdf417896085ddb844fcb74e2 /Mailman/Defaults.py.in | |
parent | f74c636bcb6d03b269d65a3b4d6ec3af835dca62 (diff) | |
parent | c88ce52f7177f5cf5d56bf3786c90f5c9e679d04 (diff) | |
download | mailman2-c0e8bb68ec685ac9e38e1993b4054d4707486bf9.tar.gz mailman2-c0e8bb68ec685ac9e38e1993b4054d4707486bf9.tar.xz mailman2-c0e8bb68ec685ac9e38e1993b4054d4707486bf9.zip |
sync with lp:mailman/2.1 Rev 1738
Diffstat (limited to 'Mailman/Defaults.py.in')
-rwxr-xr-x | Mailman/Defaults.py.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 309d0ba3..4406a1f3 100755 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -1,6 +1,6 @@ # -*- python -*- -# Copyright (C) 1998-2017 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2018 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -131,6 +131,12 @@ SUBSCRIBE_FORM_SECRET = None # test. SUBSCRIBE_FORM_MIN_TIME = seconds(5) +# Use Google reCAPTCHA to protect the subscription form from spam bots. The +# following must be set to a pair of keys issued by the reCAPTCHA service at +# https://www.google.com/recaptcha/admin +RECAPTCHA_SITE_KEY = None +RECAPTCHA_SECRET_KEY = None + # Installation wide ban list. This is a list of email addresses and regexp # patterns (beginning with ^) which are not allowed to subscribe to any lists # in the installation. This supplements the individual list's ban_list. |