Simple anti-spam mechanism

This commit is contained in:
Your Name
2023-09-10 23:46:38 +02:00
committed by Zankaria
parent 0296301fff
commit 6dabfa08bc
3 changed files with 24 additions and 1 deletions

View File

@@ -303,7 +303,14 @@
'json_response',
'user_flag',
'no_country',
'tag'
'tag',
'simple_spam'
);
// Enable simple anti-spam measure.
$config['simple_spam'] = array (
'question' => 'What is 2 + 2?',
'answer' => '4'
);
// Enable reCaptcha to make spam even harder. Rarely necessary.
@@ -1158,6 +1165,7 @@
$config['error']['flood'] = _('Flood detected; Post discarded.');
$config['error']['too_many_threads'] = _('The hourly thread limit has been reached. Please post in an existing thread.');
$config['error']['spam'] = _('Your request looks automated; Post discarded.');
$config['error']['simple_spam'] = _('You must answer the question to make a new thread. See the last field.');
$config['error']['unoriginal'] = _('Unoriginal content!');
$config['error']['muted'] = _('Unoriginal content! You have been muted for %d seconds.');
$config['error']['youaremuted'] = _('You are muted! Expires in %d seconds.');