]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Ldap/README
Made the ldap plugin work, and add a readme
[quix0rs-gnu-social.git] / plugins / Ldap / README
1 The LDAP plugin allows for StatusNet to handle authentication, authorization, and user information through LDAP.
2
3 Installation
4 ============
5 Add configuration entries to config.php. These entries are:
6
7 The following are documented at http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php
8 $config['ldap']['binddn']
9 $config['ldap']['bindpw']
10 $config['ldap']['basedn']
11 $config['ldap']['host']
12
13 $config['ldap']['nickname_attribute'] Set this to the name of the ldap attribute that holds the username. For example, on Microsoft's Active Directory, this should be set to 'sAMAccountName'
14
15 Finally, add "addPlugin('ldap');" to the bottom of your config.php
16