Added system settings option to require passwords of a set minimum length.

This setting affects User passwords, Phone and Server registration passwords and the System Settings default passwords.

git-svn-id: svn://192.168.202.10@3196 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2020-02-07 08:16:50 +00:00
parent 253a6fb5f9
commit 97be97fba5
6 changed files with 216 additions and 122 deletions
+4
View File
@@ -1168,3 +1168,7 @@ ALTER TABLE system_settings ADD opensips_cid_name ENUM('0','1') default '0';
ALTER TABLE vicidial_campaigns ADD opensips_cid_name VARCHAR(15) default '';
UPDATE system_settings SET db_schema_version='1586',db_schema_update_date=NOW() where db_schema_version < 1586;
ALTER TABLE system_settings ADD require_password_length TINYINT(3) UNSIGNED default '0';
UPDATE system_settings SET db_schema_version='1587',db_schema_update_date=NOW() where db_schema_version < 1587;