From da4255a89aed53e9e215c69978087e16a0c85753 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 14 Jul 2015 13:03:15 +0800 Subject: Bug 1182909 - Prevent new accounts from CCing large numbers of users --- extensions/AntiSpam/lib/Config.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'extensions/AntiSpam/lib') diff --git a/extensions/AntiSpam/lib/Config.pm b/extensions/AntiSpam/lib/Config.pm index c8e1255c2..92ccca175 100644 --- a/extensions/AntiSpam/lib/Config.pm +++ b/extensions/AntiSpam/lib/Config.pm @@ -61,6 +61,18 @@ sub get_param_list { "reactivated in order to interact within our etiquette " . "guidelines." }, + { + name => 'antispam_cc_limit_age', + type => 't', + default => '2', + checker => \&check_numeric, + }, + { + name => 'antispam_cc_limit_count', + type => 't', + default => '5', + checker => \&check_numeric, + }, ); return @param_list; -- cgit v1.2.3-24-g4f1b