Changeset 2870 in subversion


Ignore:
Timestamp:
Aug 24, 2009 3:29:38 PM (4 years ago)
Author:
alec
Message:
Location:
trunk/roundcubemail/plugins/password
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/plugins/password/README

    r2700 r2870  
    3131 2.3.   Poppassd/Courierpassd (poppassd) 
    3232 2.4.   LDAP (ldap) 
     33 2.5.   DirectAdmin Control Panel 
    3334 3.     Driver API 
    3435 
     
    162163 2.4. LDAP (ldap) 
    163164 ---------------- 
    164   
     165 
    165166 See config.inc.php file. Requires PEAR::Net_LDAP2 package. 
     167 
     168 
     169 2.5. DirectAdmin Control Panel 
     170 ------------------------------------- 
     171 
     172 You can specify which host to connect to via `password_directadmin_host`  
     173 and what port via `password_direactadmin_port`. See config.inc.php file  
     174 for more info. 
    166175 
    167176 
  • trunk/roundcubemail/plugins/password/config.inc.php.dist

    r2869 r2870  
    115115$rcmail_config['password_ldap_force_replace'] = true; 
    116116 
     117 
     118// DirectAdmin Driver options 
     119// -------------------------- 
     120// The host which changes the password 
     121$rcmail_config['password_directadmin_host'] = 'localhost'; 
     122 
     123// TCP port used for DirectAdmin connections 
     124$rcmail_config['password_directadmin_port'] = 2222; 
     125 
    117126?> 
Note: See TracChangeset for help on using the changeset viewer.