summaryrefslogtreecommitdiff
path: root/FS/FS/svc_acct.pm
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-01-05 22:19:26 -0600
committerJonathan Prykop <jonathan@freeside.biz>2016-01-05 22:26:04 -0600
commite32f1ceeb6f267ab6d3279bf350d192d4bf1a72e (patch)
tree79edd38d8b811002386ce2a69f46cb960ceecbf8 /FS/FS/svc_acct.pm
parent1667ab631f9fbd0f4ceeb6ec000b0f4ff3ddb51a (diff)
RT#39481: Password Maximum Length
Diffstat (limited to 'FS/FS/svc_acct.pm')
-rw-r--r--FS/FS/svc_acct.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm
index 53b12f1..59d1e04 100644
--- a/FS/FS/svc_acct.pm
+++ b/FS/FS/svc_acct.pm
@@ -72,7 +72,7 @@ FS::UID->install_callback( sub {
$passwordmin = ( defined($passwordmin) && $passwordmin =~ /\d+/ )
? $passwordmin
: 6;
- $passwordmax = $conf->config('passwordmax') || 8;
+ $passwordmax = $conf->config('passwordmax') || 12;
$username_letter = $conf->exists('username-letter');
$username_letterfirst = $conf->exists('username-letterfirst');
$username_noperiod = $conf->exists('username-noperiod');