]> git.mxchange.org Git - friendica-addons.git/blob - ldapauth/config/ldapauth.ini.php
Merge pull request #749 from annando/notices
[friendica-addons.git] / ldapauth / config / ldapauth.ini.php
1 <?php return <<<INI
2
3 ; Warning: Don't change this file! It only holds the default config values for this addon.
4 ; Instead overwrite these config values in config/addon.ini.php in your Friendica directory
5
6 [ldapauth]
7 ; ldap_server (String)
8 ; ldap hostname server - required
9 ; Example: ldap_server = host.example.com
10 ldap_server =
11
12 ; ldap_binddn (String)
13 ; admin dn - optional - only if ldap server dont have anonymous access
14 ; Example: ldap_binddn = cn=admin,dc=example,dc=com
15 ldap_binddn =
16
17 ; ldap_bindpw (String)
18 ; admin password - optional - only if ldap server dont have anonymous access
19 ldap_bindpw =
20
21 ; ldap_searchdn (String)
22 ; dn to search users - required
23 ; Example: ldap_searchdn = ou=users,dc=example,dc=com
24 ldap_searchdn =
25
26 ; ldap_userattr (String)
27 ; attribute to find username - required
28 ; Example: ldap_userattr = uid
29 ldap_userattr =
30
31 ; ldap_group (String)
32 ; DN of the group whose member can auth on Friendica - optional
33 ldap_group =
34
35 ; ldap_autocreateaccount (Boolean)
36 ; for create Friendica account if user exist in ldap
37 ;       required an email and a simple (beautiful) nickname on user ldap object
38 ; active account creation - optional - default none
39 ldap_autocreateaccount = true
40
41 ; ldap_autocreateaccount_emailattribute (String)
42 ; attribute to get email - optional - default : 'mail'
43 ldap_autocreateaccount_emailattribute = mail
44
45 ; ldap_autocreateaccount_nameattribute (String)
46 ; attribute to get nickname - optional - default : 'givenName'
47 ldap_autocreateaccount_nameattribute = givenName
48
49 INI;
50 //Keep this line