diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-11 13:12:43 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-11 13:12:43 +0000 |
| commit | 9a96dd619718de03f94d87fbbb33ca315085d917 (patch) | |
| tree | f4cccf4da521122f637377619dbf665b89e93097 /roundcubemail/plugins/password/config.inc.php.dist | |
| parent | 3f2dda319ceb9a31415d5218f92c5be2c723dad9 (diff) | |
- Password: added password strength options (#1486062)
git-svn-id: https://svn.roundcube.net/trunk@2945 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins/password/config.inc.php.dist')
| -rw-r--r-- | roundcubemail/plugins/password/config.inc.php.dist | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/roundcubemail/plugins/password/config.inc.php.dist b/roundcubemail/plugins/password/config.inc.php.dist index f526c7f3f..3950afca5 100644 --- a/roundcubemail/plugins/password/config.inc.php.dist +++ b/roundcubemail/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; |
