diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-11-17 23:22:19 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-11-17 23:22:19 -0500 |
commit | 7dfce35bea3e9476358048083ed469b2674b41a4 (patch) | |
tree | 5d25de369fc88402e973f0f8f6590de327e8e1a1 /plugins/LdapAuthentication/README | |
parent | b7660b3d9998af4106795d53ed6bc1a0d77d7d4f (diff) |
(Theoretically) allow users to change their passwords.
I cannot test this... but I hope it works :-)
Diffstat (limited to 'plugins/LdapAuthentication/README')
-rw-r--r-- | plugins/LdapAuthentication/README | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/LdapAuthentication/README b/plugins/LdapAuthentication/README index dc3f4ba88..2226159c2 100644 --- a/plugins/LdapAuthentication/README +++ b/plugins/LdapAuthentication/README @@ -18,6 +18,9 @@ email_changeable (true): Are users allowed to change their email address? (true or false) password_changeable (true): Are users allowed to change their passwords? (true or false) +password_encoding: required if users are to be able to change their passwords + Possible values are: crypt, ext_des, md5crypt, blowfish, md5, sha, ssha, + smd5, ad, clear host*: LDAP server name to connect to. You can provide several hosts in an array in which case the hosts are tried from left to right. @@ -47,6 +50,7 @@ attributes: an array that relates StatusNet user attributes to LDAP ones fullname homepage location + password: required if users are to be able to change their passwords * required default values are in (parenthesis) @@ -67,10 +71,12 @@ addPlugin('ldapAuthentication', array( 'bindpw'=>'password', 'basedn'=>'OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', 'host'=>array('server1', 'server2'), + 'password_encoding'=>'ad', 'attributes'=>array( 'username'=>'sAMAccountName', 'nickname'=>'sAMAccountName', 'email'=>'mail', - 'fullname'=>'displayName') + 'fullname'=>'displayName', + 'password'=>'unicodePwd') )); |