summaryrefslogtreecommitdiff
path: root/plugins/password/config.inc.php.dist
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-09-11 13:12:43 +0000
committeralecpl <alec@alec.pl>2009-09-11 13:12:43 +0000
commite7b283b80ee7b8812267715f47cac64bac3962c2 (patch)
tree7151354589c2e8a29848421d167a5a408bebae27 /plugins/password/config.inc.php.dist
parent4906eb830c29f6cf172595bd3b035b063282d9e1 (diff)
- Password: added password strength options (#1486062)
Diffstat (limited to 'plugins/password/config.inc.php.dist')
-rw-r--r--plugins/password/config.inc.php.dist11
1 files changed, 9 insertions, 2 deletions
diff --git a/plugins/password/config.inc.php.dist b/plugins/password/config.inc.php.dist
index f526c7f3f..3950afca5 100644
--- a/plugins/password/config.inc.php.dist
+++ b/plugins/password/config.inc.php.dist
@@ -9,6 +9,14 @@ $rcmail_config['password_driver'] = 'sql';
// Default: false.
$rcmail_config['password_confirm_current'] = true;
+// Require the new password to be a certain length.
+// set to blank to allow passwords of any length
+$rcmail_config['password_minimum_length'] = 0;
+
+// Require the new password to contain a letter and punctuation character
+// Change to false to remove this check.
+$rcmail_config['password_require_nonalpha'] = false;
+
// SQL Driver options
// ------------------
@@ -134,8 +142,7 @@ $rcmail_config['password_ldap_force_replace'] = true;
// DirectAdmin Driver options
// --------------------------
// The host which changes the password
-// Use 'ssl://serverip' instead of 'tcp://serverip' when running DirectAdmin over SSL.
-$rcmail_config['password_directadmin_host'] = 'tcp://localhost';
+$rcmail_config['password_directadmin_host'] = 'localhost';
// TCP port used for DirectAdmin connections
$rcmail_config['password_directadmin_port'] = 2222;