1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-01-10 04:18:10 +02:00

[Web] Revert password policy, fixes #2163

This commit is contained in:
andryyy 2019-01-09 08:43:56 +01:00
parent a28af5761e
commit 7686171905

View File

@ -90,11 +90,11 @@ $DEFAULT_THEME = 'lumen';
// Password complexity as regular expression
// Min. 6 characters
//$PASSWD_REGEP = '.{6,}';
$PASSWD_REGEP = '.{6,}';
// Min. 6 characters, which must include at least one uppercase letter, one lowercase letter and one number
// $PASSWD_REGEP = '^(?=.*[A-Z])(?=.*[0-9])(?=.*[a-z]).{6,}$';
// Min. 6 characters, which must include at least one letter and one number
$PASSWD_REGEP = '^(?=.*[0-9])(?=.*[A-Za-z]).{6,}$';
// $PASSWD_REGEP = '^(?=.*[0-9])(?=.*[A-Za-z]).{6,}$';
// Show DKIM private keys - false by default
$SHOW_DKIM_PRIV_KEYS = false;