0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

and trim string before length check

This commit is contained in:
David Goodwin 2021-01-25 21:57:59 +00:00
parent 2acdcdbd75
commit a1025b4760

View File

@ -229,7 +229,7 @@ $CONF['password_validation'] = array(
'/.{5}/' => 'password_too_short 5', # minimum length 5 characters
// '/([a-zA-Z].*){3}/' => 'password_no_characters 3', # must contain at least 3 consecutive characters
'/([0-9].*){2}/' => 'password_no_digits 2', # must contain at least 2 digits
'length_check' => function($password) { return strlen($password) > 2; }, // not unicode safe.
'length_check' => function($password) { return strlen(trim($password)) > 2; }, // not unicode safe.
/* support a 'callable' value which if it returns a non-empty string will be assumed to have failed. */
/**