summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config
diff options
context:
space:
mode:
authorSimon Green <sgreen@redhat.com>2014-09-11 01:45:23 +0200
committerSimon Green <sgreen@redhat.com>2014-09-11 01:45:23 +0200
commitb8ecdca238744552db04acb5450ce078d9760a4c (patch)
tree42cd3a41e06fd229d6deeae6b247df724272dd3c /Bugzilla/Config
parentab1b842ba2e2f9ad3774c6c415129a4e196acc57 (diff)
downloadbugzilla-b8ecdca238744552db04acb5450ce078d9760a4c.tar.gz
bugzilla-b8ecdca238744552db04acb5450ce078d9760a4c.tar.xz
Bug 1009013 - Require a user to change their password if they log in and their current password does not meet the password complexity rules
r=glob, a=sgreen
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r--Bugzilla/Config/Auth.pm9
1 files changed, 8 insertions, 1 deletions
diff --git a/Bugzilla/Config/Auth.pm b/Bugzilla/Config/Auth.pm
index bf5db9d97..78d719b15 100644
--- a/Bugzilla/Config/Auth.pm
+++ b/Bugzilla/Config/Auth.pm
@@ -114,7 +114,14 @@ sub get_param_list {
'letters_numbers_specialchars' ],
default => 'no_constraints',
checker => \&check_multi
- } );
+ },
+
+ {
+ name => 'password_check_on_login',
+ type => 'b',
+ default => '1'
+ },
+ );
return @param_list;
}