X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FPassword_Mixin.pm;h=122e3fd838146bf9c85afbb52c43502aa7d58ae4;hb=db5785cba180e2c210d3ab4d37064c7e61898614;hp=3dd9ce4b0f0229f35aa3edee377a5c84dfb10b7c;hpb=2b2e19ae4838d1d788b244ceff85957c52b0655f;p=freeside.git diff --git a/FS/FS/Password_Mixin.pm b/FS/FS/Password_Mixin.pm index 3dd9ce4b0..122e3fd83 100644 --- a/FS/FS/Password_Mixin.pm +++ b/FS/FS/Password_Mixin.pm @@ -46,7 +46,7 @@ sub is_password_allowed { # basic checks using Data::Password; # options for Data::Password $DICTIONARY = 0; # minimum length of disallowed words, false value disables dictionary checking - $MINLEN = $conf->config('passwordmin') || 6; + $MINLEN = $conf->config('passwordmin') || 8; $MAXLEN = $conf->config('passwordmax') || 12; $GROUPS = 4; # must have all 4 'character groups': numbers, symbols, uppercase, lowercase # other options use the defaults listed below: