diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-06-20 13:21:10 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-06-20 13:21:10 +0000 |
| commit | cc30aee5180c777ef8438c6ed685b333b9a85d41 (patch) | |
| tree | 4cf715a5f474a72a2f589ae2112c56349398b7ed /roundcubemail/plugins/password/config.inc.php | |
| parent | eb68f2c6c1a8eb71adf049f968074d0b267c2d42 (diff) | |
- Password plugin: added poppassd driver
git-svn-id: https://svn.roundcube.net/trunk@2668 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins/password/config.inc.php')
| -rw-r--r-- | roundcubemail/plugins/password/config.inc.php | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/roundcubemail/plugins/password/config.inc.php b/roundcubemail/plugins/password/config.inc.php index 8fa329204..6107f206f 100644 --- a/roundcubemail/plugins/password/config.inc.php +++ b/roundcubemail/plugins/password/config.inc.php @@ -3,11 +3,11 @@ // Password Plugin options // ----------------------- // A driver to use for password change. Default: "sql". -$rcmail_config['password_driver'] = 'sql'; +$rcmail_config['password_driver'] = 'poppassd'; // Determine whether current password is required to change password. // Default: false. -$rcmail_config['password_confirm_current'] = false; +$rcmail_config['password_confirm_current'] = true; // SQL Driver options @@ -25,7 +25,16 @@ $rcmail_config['password_db_dsn'] = ''; // %o is replaced with the password before the change // %h is replaced with the imap host (from the session info) // Escaping of macros is handled by this module. -// Default: "SELECT update_passwd(%c, %u)" +// Default: "SELECT update_passwd(%c, %u)" $rcmail_config['password_query'] = 'SELECT update_passwd(%c, %u)'; + +// Poppassd Driver options +// ----------------------- +// The host which changes the password +$rcmail_config['password_pop_host'] = 'localhost'; + +// TCP port used for poppassd connections +$rcmail_config['password_pop_port'] = 106; + ?> |
