aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Cgi/listinfo.py
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2019-06-10 17:29:24 +0200
committerRalf Jung <post@ralfj.de>2019-06-10 17:29:24 +0200
commitb7476d1c86053181cb38aa3acd3fc718fde55979 (patch)
tree9aa2c07ef0d77f857d5cbcfeacd19abeaa064840 /Mailman/Cgi/listinfo.py
parent56188e427f80ed350b6608ce47124402c90b9d40 (diff)
downloadmailman2-b7476d1c86053181cb38aa3acd3fc718fde55979.tar.gz
mailman2-b7476d1c86053181cb38aa3acd3fc718fde55979.tar.xz
mailman2-b7476d1c86053181cb38aa3acd3fc718fde55979.zip
implement a simple CAPTCHA scheme based on questions and answers configured by the site admin
Diffstat (limited to '')
-rw-r--r--Mailman/Cgi/listinfo.py19
1 files changed, 17 insertions, 2 deletions
diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py
index f1b455da..909e401e 100644
--- a/Mailman/Cgi/listinfo.py
+++ b/Mailman/Cgi/listinfo.py
@@ -216,10 +216,25 @@ def list_listinfo(mlist, lang):
# drop one : resulting in an invalid format, but it's only
# for our hash so it doesn't matter.
remote = remote.rsplit(':', 1)[0]
+ # render CAPTCHA, if configured
+ if isinstance(mm_cfg.CAPTCHAS, dict):
+ (captcha_question, captcha_box, captcha_idx) = \
+ Utils.captcha_display(mlist, lang, mm_cfg.CAPTCHAS)
+ pre_question = _(
+ '''Please answer the following question to prove that
+ you are not a bot:'''
+ )
+ replacements['<mm-captcha-ui>'] = (
+ """<tr><td BGCOLOR="#dddddd">%s<br>%s</td><td>%s</td></tr>"""
+ % (pre_question, captcha_question, captcha_box))
+ else:
+ captcha_idx = 0 # just to have something to include in the hash below
+ # fill form
replacements['<mm-subscribe-form-start>'] += (
- '<input type="hidden" name="sub_form_token" value="%s:%s">\n'
- % (now, Utils.sha_new(mm_cfg.SUBSCRIBE_FORM_SECRET + ":" +
+ '<input type="hidden" name="sub_form_token" value="%s:%s:%s">\n'
+ % (now, captcha_idx, Utils.sha_new(mm_cfg.SUBSCRIBE_FORM_SECRET + ":" +
now + ":" +
+ captcha_idx + ":" +
mlist.internal_name() + ":" +
remote
).hexdigest()