summaryrefslogtreecommitdiffstats
path: root/extensions/AntiSpam/lib/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/AntiSpam/lib/Config.pm')
-rw-r--r--extensions/AntiSpam/lib/Config.pm116
1 files changed, 58 insertions, 58 deletions
diff --git a/extensions/AntiSpam/lib/Config.pm b/extensions/AntiSpam/lib/Config.pm
index 278baea8f..3cddb77ed 100644
--- a/extensions/AntiSpam/lib/Config.pm
+++ b/extensions/AntiSpam/lib/Config.pm
@@ -17,66 +17,66 @@ use Bugzilla::Group;
our $sortkey = 511;
sub get_param_list {
- my ($class) = @_;
+ my ($class) = @_;
- my @param_list = (
- {
- name => 'antispam_spammer_exclude_group',
- type => 's',
- choices => \&get_all_group_names,
- default => 'canconfirm',
- checker => \&check_group
- },
- {
- name => 'antispam_spammer_comment_count',
- type => 't',
- default => '3',
- checker => \&check_numeric
- },
- {
- name => 'antispam_spammer_disable_text',
- type => 'l',
- default =>
- "This account has been automatically disabled as a result of " .
- "a high number of spam comments.<br>\n<br>\n" .
- "Please contact the address at the end of this message if " .
- "you believe this to be an error."
- },
- {
- name => 'antispam_abusive_comment_count',
- type => 't',
- default => '5',
- checker => \&check_numeric
- },
- {
- name => 'antispam_abusive_disable_text',
- type => 'l',
- default =>
- "This account has been automatically disabled as a result of " .
- "a high number of comments tagged as abusive.<br>\n<br>\n" .
- "All interactions on Bugzilla should follow our " .
- "<a href=\"" . Bugzilla->localconfig->{'urlbase'} . "page.cgi?id=etiquette.html\">" .
- "etiquette guidelines</a>.<br>\n<br>\n" .
- "Please contact the address at the end of this message if you " .
- "believe this to be an error, or if you would like your account " .
- "reactivated in order to interact within our etiquette " .
- "guidelines."
- },
- {
- name => 'antispam_multi_user_limit_age',
- type => 't',
- default => '2',
- checker => \&check_numeric,
- },
- {
- name => 'antispam_multi_user_limit_count',
- type => 't',
- default => '5',
- checker => \&check_numeric,
- },
- );
+ my @param_list = (
+ {
+ name => 'antispam_spammer_exclude_group',
+ type => 's',
+ choices => \&get_all_group_names,
+ default => 'canconfirm',
+ checker => \&check_group
+ },
+ {
+ name => 'antispam_spammer_comment_count',
+ type => 't',
+ default => '3',
+ checker => \&check_numeric
+ },
+ {
+ name => 'antispam_spammer_disable_text',
+ type => 'l',
+ default => "This account has been automatically disabled as a result of "
+ . "a high number of spam comments.<br>\n<br>\n"
+ . "Please contact the address at the end of this message if "
+ . "you believe this to be an error."
+ },
+ {
+ name => 'antispam_abusive_comment_count',
+ type => 't',
+ default => '5',
+ checker => \&check_numeric
+ },
+ {
+ name => 'antispam_abusive_disable_text',
+ type => 'l',
+ default => "This account has been automatically disabled as a result of "
+ . "a high number of comments tagged as abusive.<br>\n<br>\n"
+ . "All interactions on Bugzilla should follow our "
+ . "<a href=\""
+ . Bugzilla->localconfig->{'urlbase'}
+ . "page.cgi?id=etiquette.html\">"
+ . "etiquette guidelines</a>.<br>\n<br>\n"
+ . "Please contact the address at the end of this message if you "
+ . "believe this to be an error, or if you would like your account "
+ . "reactivated in order to interact within our etiquette "
+ . "guidelines."
+ },
+ {
+ name => 'antispam_multi_user_limit_age',
+ type => 't',
+ default => '2',
+ checker => \&check_numeric,
+ },
+ {
+ name => 'antispam_multi_user_limit_count',
+ type => 't',
+ default => '5',
+ checker => \&check_numeric,
+ },
+ );
- return @param_list;
+ return @param_list;
}
1;