diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-24 19:29:38 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-24 19:29:38 +0000 |
| commit | 62247597535bfaf90acae1e1c71fd09ab75dc9bc (patch) | |
| tree | f56f9871e23951f281bbf7a5d89369bdeaf70a0c /roundcubemail/plugins/password | |
| parent | f0c33d00dcb1c9fa394b45aba51466871a3f90af (diff) | |
- Password: added DirectAdmin driver (#1486048)
git-svn-id: https://svn.roundcube.net/trunk@2870 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins/password')
| -rw-r--r-- | roundcubemail/plugins/password/README | 11 | ||||
| -rw-r--r-- | roundcubemail/plugins/password/config.inc.php.dist | 9 |
2 files changed, 19 insertions, 1 deletions
diff --git a/roundcubemail/plugins/password/README b/roundcubemail/plugins/password/README index 80532be66..033af5f69 100644 --- a/roundcubemail/plugins/password/README +++ b/roundcubemail/plugins/password/README @@ -30,6 +30,7 @@ 2.2. Cyrus/SASL (sasl) 2.3. Poppassd/Courierpassd (poppassd) 2.4. LDAP (ldap) + 2.5. DirectAdmin Control Panel 3. Driver API @@ -161,10 +162,18 @@ 2.4. LDAP (ldap) ---------------- - + See config.inc.php file. Requires PEAR::Net_LDAP2 package. + 2.5. DirectAdmin Control Panel + ------------------------------------- + + You can specify which host to connect to via `password_directadmin_host` + and what port via `password_direactadmin_port`. See config.inc.php file + for more info. + + 3. Driver API ------------- diff --git a/roundcubemail/plugins/password/config.inc.php.dist b/roundcubemail/plugins/password/config.inc.php.dist index 5d0a88b4e..163fddaec 100644 --- a/roundcubemail/plugins/password/config.inc.php.dist +++ b/roundcubemail/plugins/password/config.inc.php.dist @@ -114,4 +114,13 @@ $rcmail_config['password_ldap_pwattr'] = 'userPassword'; // Default: true $rcmail_config['password_ldap_force_replace'] = true; + +// DirectAdmin Driver options +// -------------------------- +// The host which changes the password +$rcmail_config['password_directadmin_host'] = 'localhost'; + +// TCP port used for DirectAdmin connections +$rcmail_config['password_directadmin_port'] = 2222; + ?> |
