diff options
author | thomascube <thomas@roundcube.net> | 2009-07-02 08:40:56 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-07-02 08:40:56 +0000 |
commit | 2a4abc1286ee57b804996a1c9fe410b5b9837ef3 (patch) | |
tree | bfe1b844dc94bab41fedb30e987ae91c282d97df /plugins/password | |
parent | 07722a2d1d9e4ff6e04a9b34a8ba42e4c4a66606 (diff) |
Plugin to copy user prefs from a Qquirrelmail installation (when a new user is registered)
Diffstat (limited to 'plugins/password')
-rw-r--r-- | plugins/password/config.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/password/config.inc.php b/plugins/password/config.inc.php index 1b964e3fc..3945ea098 100644 --- a/plugins/password/config.inc.php +++ b/plugins/password/config.inc.php @@ -3,7 +3,7 @@ // Password Plugin options // ----------------------- // A driver to use for password change. Default: "sql". -$rcmail_config['password_driver'] = 'poppassd'; +$rcmail_config['password_driver'] = 'sasl'; // 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'] = ''; +$rcmail_config['password_saslpasswd_args'] = '-u rolig'; // LDAP Driver options |