diff options
author | thomascube <thomas@roundcube.net> | 2009-07-02 08:45:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-07-02 08:45:12 +0000 |
commit | be6c9752f9a32c789e85fea958fb1b5ef7bd22ca (patch) | |
tree | de359e2ef1db8671e0e364738dfb00e76f6d7e9f | |
parent | 2a4abc1286ee57b804996a1c9fe410b5b9837ef3 (diff) |
Move config file to config.inc.php.dist to prevent further accidental commits
-rw-r--r-- | plugins/password/README | 3 | ||||
-rw-r--r-- | plugins/password/config.inc.php.dist (renamed from plugins/password/config.inc.php) | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/password/README b/plugins/password/README index a7e386e50..80532be66 100644 --- a/plugins/password/README +++ b/plugins/password/README @@ -36,7 +36,8 @@ 1. Configuration ---------------- - * See config.inc.php file. + Copy config.inc.php.dist to config.inc.php and set the options as described + within the file. 2. Drivers diff --git a/plugins/password/config.inc.php b/plugins/password/config.inc.php.dist index 3945ea098..7bcd31be2 100644 --- a/plugins/password/config.inc.php +++ b/plugins/password/config.inc.php.dist @@ -3,7 +3,7 @@ // Password Plugin options // ----------------------- // A driver to use for password change. Default: "sql". -$rcmail_config['password_driver'] = 'sasl'; +$rcmail_config['password_driver'] = 'sql'; // Determine whether current password is required to change password. // Default: false. @@ -41,7 +41,7 @@ $rcmail_config['password_pop_port'] = 106; // SASL Driver options // ------------------- // Additional arguments for the saslpasswd2 call -$rcmail_config['password_saslpasswd_args'] = '-u rolig'; +$rcmail_config['password_saslpasswd_args'] = ''; // LDAP Driver options |