diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-02 12:14:14 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-02 12:14:14 +0000 |
| commit | ce2dc0a3061bbede2fd1240c9b54a45a0ca784af (patch) | |
| tree | b21971da353639234b482502e426efdf3fcd5f6a /roundcubemail/plugins/password/config.inc.php.dist | |
| parent | a0a63ce119c7592a4488d9c3ccd3df64d538c8ec (diff) | |
- Password: cPanel driver added
git-svn-id: https://svn.roundcube.net/trunk@3008 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 | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/roundcubemail/plugins/password/config.inc.php.dist b/roundcubemail/plugins/password/config.inc.php.dist index 73057ae9c..d3119487a 100644 --- a/roundcubemail/plugins/password/config.inc.php.dist +++ b/roundcubemail/plugins/password/config.inc.php.dist @@ -3,7 +3,7 @@ // Password Plugin options // ----------------------- // A driver to use for password change. Default: "sql". -// Current possibilities: 'directadmin', 'ldap', 'poppassd', 'sasl', 'sql', 'vpopmaild' +// Current possibilities: 'directadmin', 'ldap', 'poppassd', 'sasl', 'sql', 'vpopmaild', 'cpanel' $rcmail_config['password_driver'] = 'sql'; // Determine whether current password is required to change password. @@ -158,4 +158,25 @@ $rcmail_config['password_vpopmaild_host'] = 'localhost'; // TCP port used for vpopmaild connections $rcmail_config['password_vpopmaild_port'] = 89; + +// cPanel Driver options +// -------------------------- +// The cPanel Host name +$rcmail_config['password_cpanel_host'] = 'host.domain.com'; + +// The cPanel admin username +$rcmail_config['password_cpanel_username'] = 'username'; + +// The cPanel admin password +$rcmail_config['password_cpanel_password'] = 'password'; + +// The cPanel port to use +$rcmail_config['password_cpanel_port'] = 2082; + +// Using ssl for cPanel connections? +$rcmail_config['password_cpanel_ssl'] = true; + +// The cPanel theme in use +$rcmail_config['password_cpanel_theme'] = 'x'; + ?> |
