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

remove duplication; comment out the length_check password_verify rule as we already have /.{5}/

This commit is contained in:
David Goodwin 2021-01-27 10:56:40 +00:00
parent e3269b62d9
commit 97ae019e10

View File

@ -231,14 +231,7 @@ $CONF['password_validation'] = array(
'/([0-9].*){2}/' => 'password_no_digits 2', # must contain at least 2 digits
/* support a 'callable' value which if it returns a non-empty string will be assumed to have failed, non-empty string should be a PALANG key */
'length_check' => function($password) { if (strlen(trim($password)) < 3) { return 'password_too_short'; } }, // not unicode safe.
/**
* 'any-key' => function($password) {
* if ( rand(0, 5) == 0 ) { return 'password_too_short'; }
* // add some remote api check here ... or whatever
* },
*/
// 'length_check' => function($password) { if (strlen(trim($password)) < 3) { return 'password_too_short'; } },
);
// Generate Password