diff options
author | Byron Jones <glob@mozilla.com> | 2015-07-14 07:03:15 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-07-14 07:03:15 +0200 |
commit | da4255a89aed53e9e215c69978087e16a0c85753 (patch) | |
tree | f81c831fe8e9391eab55f69a56d5849b3f8d2f9d /extensions/AntiSpam/lib | |
parent | 43740a1ba3a3ee680033fbea7c23daab221016d5 (diff) | |
download | bugzilla-da4255a89aed53e9e215c69978087e16a0c85753.tar.gz bugzilla-da4255a89aed53e9e215c69978087e16a0c85753.tar.xz |
Bug 1182909 - Prevent new accounts from CCing large numbers of users
Diffstat (limited to 'extensions/AntiSpam/lib')
-rw-r--r-- | extensions/AntiSpam/lib/Config.pm | 12 |
1 files changed, 12 insertions, 0 deletions
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; |