xref: /dokuwiki/lib/plugins/authldap/lang/en/settings.php (revision 338ac38c748d94f32ca394dc604dda97ce6762e3)
110bf8148SAndreas Gohr<?php
210bf8148SAndreas Gohr$lang['server']      = 'Your LDAP server. Either hostname (<code>localhost</code>) or full qualified URL (<code>ldap://server.tld:389</code>)';
310bf8148SAndreas Gohr$lang['port']        = 'LDAP server port if no full URL was given above';
4*338ac38cSAndreas Gohr$lang['usertree']    = 'Where to find the user accounts. Eg. <code>ou=People, dc=server, dc=tld</code>';
510bf8148SAndreas Gohr$lang['grouptree']   = 'Where to find the user groups. Eg. <code>ou=Group, dc=server, dc=tld</code>';
64005b080SAnika Henke$lang['userfilter']  = 'LDAP filter to search for user accounts. Eg. <code>(&amp;(uid=%{user})(objectClass=posixAccount))</code>';
74005b080SAnika Henke$lang['groupfilter'] = 'LDAP filter to search for groups. Eg. <code>(&amp;(objectClass=posixGroup)(|(gidNumber=%{gid})(memberUID=%{user})))</code>';
810bf8148SAndreas Gohr$lang['version']     = 'The protocol version to use. You may need to set this to <code>3</code>';
910bf8148SAndreas Gohr$lang['starttls']    = 'Use TLS connections?';
1010bf8148SAndreas Gohr$lang['referrals']   = 'Shall referrals be followed?';
11*338ac38cSAndreas Gohr$lang['binddn']      = 'DN of an optional bind user if anonymous bind is not sufficient. Eg. <code>cn=admin, dc=my, dc=home</code>';
1210bf8148SAndreas Gohr$lang['bindpw']      = 'Password of above user';
1310bf8148SAndreas Gohr$lang['userscope']   = 'Limit search scope for user search';
1410bf8148SAndreas Gohr$lang['groupscope']  = 'Limit search scope for group search';
1545970804SKlap-in$lang['groupkey']    = 'Group member ship from any user attribute (instead of standard AD groups) e.g. group from department or telephone number';
1610bf8148SAndreas Gohr$lang['debug']       = 'Display additional debug information on errors';
17