Wha’ts the best way of setting rules for passwords in SuiteCRM?
I want to put rules in so that a users password has to have Minimum 8 characters at least 1 Alphabet, 1 Number and 1 Special Character
Wha’ts the best way of setting rules for passwords in SuiteCRM?
I want to put rules in so that a users password has to have Minimum 8 characters at least 1 Alphabet, 1 Number and 1 Special Character
Not natively … you need some custom code … we looked at it for a customer … it’s not a big ask.
Hi,
Sorry for not agreeing with the previous answer.
In config.php there are a few lines containing password rules:
‘passwordsetting’ =>
array (
…
‘minpwdlength’ => 6,
‘oneupper’ => false,
'onelower => false,
‘onenumber’ => false,
),
I think this will solve the request.
Best Regards
V Barroso
Thanks - I guessed I’d need some custom code -
Just checking in case I’d missed a setting
V Barroso the settings in config.php are ignored - they are used in Sugar Pro
Hi,
Checked password setting and I agree - it is not working.
However in SugarCRM 6.4.4 CE this feature was working! Maybe this functionality can be easy to implement/recover.
Regards
V Barroso