From c6a8117e820a1a2754d22f414fa29d1a3da19895 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Sun, 17 Jan 2021 22:31:53 +0000 Subject: [PATCH] improve doc comment - see https://github.com/postfixadmin/postfixadmin/issues/423 --- config.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.inc.php b/config.inc.php index 834248f9..0eb6dca2 100644 --- a/config.inc.php +++ b/config.inc.php @@ -227,7 +227,7 @@ if(@file_exists('/usr/bin/doveadm')) { // @ to silence openbase_dir stuff; see h $CONF['password_validation'] = array( # '/regular expression/' => '$PALANG key (optional: + parameter)', '/.{5}/' => 'password_too_short 5', # minimum length 5 characters - '/([a-zA-Z].*){3}/' => 'password_no_characters 3', # must contain at least 3 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 /* support a 'callable' value which if it returns a non-empty string will be assumed to have failed. */