Changeset 3008 in subversion


Ignore:
Timestamp:
Oct 2, 2009 8:14:14 AM (4 years ago)
Author:
alec
Message:
  • Password: cPanel driver added
Location:
trunk/roundcubemail
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r3004 r3008  
    22=========================== 
    33 
     4- Password: added cPanel driver 
    45- Fix return to first page from e-mail screen (#1486105) 
    56- Fix handling HTML comments in HTML messages (#1486189) 
  • trunk/roundcubemail/plugins/password/README

    r2870 r3008  
    3232 2.4.   LDAP (ldap) 
    3333 2.5.   DirectAdmin Control Panel 
     34 2.6.   cPanel 
    3435 3.     Driver API 
    3536 
     
    175176 
    176177 
     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 
    177185 3. Driver API 
    178186 ------------- 
  • trunk/roundcubemail/plugins/password/config.inc.php.dist

    r2973 r3008  
    44// ----------------------- 
    55// 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' 
    77$rcmail_config['password_driver'] = 'sql'; 
    88 
     
    159159$rcmail_config['password_vpopmaild_port'] = 89; 
    160160 
     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 
    161182?> 
Note: See TracChangeset for help on using the changeset viewer.