Changeset 3008 in subversion
- Timestamp:
- Oct 2, 2009 8:14:14 AM (4 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 1 added
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
plugins/password/README (modified) (2 diffs)
-
plugins/password/config.inc.php.dist (modified) (2 diffs)
-
plugins/password/drivers/cpanel.php (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3004 r3008 2 2 =========================== 3 3 4 - Password: added cPanel driver 4 5 - Fix return to first page from e-mail screen (#1486105) 5 6 - Fix handling HTML comments in HTML messages (#1486189) -
trunk/roundcubemail/plugins/password/README
r2870 r3008 32 32 2.4. LDAP (ldap) 33 33 2.5. DirectAdmin Control Panel 34 2.6. cPanel 34 35 3. Driver API 35 36 … … 175 176 176 177 178 2.6. cPanel 179 ----------- 180 181 You can specify parameters for HTTP connection to cPanel's admin 182 interface. See config.inc.php file for more info. 183 184 177 185 3. Driver API 178 186 ------------- -
trunk/roundcubemail/plugins/password/config.inc.php.dist
r2973 r3008 4 4 // ----------------------- 5 5 // A driver to use for password change. Default: "sql". 6 // Current possibilities: 'directadmin', 'ldap', 'poppassd', 'sasl', 'sql', 'vpopmaild' 6 // Current possibilities: 'directadmin', 'ldap', 'poppassd', 'sasl', 'sql', 'vpopmaild', 'cpanel' 7 7 $rcmail_config['password_driver'] = 'sql'; 8 8 … … 159 159 $rcmail_config['password_vpopmaild_port'] = 89; 160 160 161 162 // cPanel Driver options 163 // -------------------------- 164 // The cPanel Host name 165 $rcmail_config['password_cpanel_host'] = 'host.domain.com'; 166 167 // The cPanel admin username 168 $rcmail_config['password_cpanel_username'] = 'username'; 169 170 // The cPanel admin password 171 $rcmail_config['password_cpanel_password'] = 'password'; 172 173 // The cPanel port to use 174 $rcmail_config['password_cpanel_port'] = 2082; 175 176 // Using ssl for cPanel connections? 177 $rcmail_config['password_cpanel_ssl'] = true; 178 179 // The cPanel theme in use 180 $rcmail_config['password_cpanel_theme'] = 'x'; 181 161 182 ?>
Note: See TracChangeset
for help on using the changeset viewer.
