xref: /dokuwiki/lib/plugins/authldap/lang/en/settings.php (revision 84f66e9f97ebf4d78ffaaad7a0b44f5c0180bfc9)
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';
4bdac7415SAndreas 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?';
11e7fbe189SAndreas Gohr$lang['deref']       = 'How to dereference aliases?';
12bdac7415SAndreas Gohr$lang['binddn']      = 'DN of an optional bind user if anonymous bind is not sufficient. Eg. <code>cn=admin, dc=my, dc=home</code>';
1310bf8148SAndreas Gohr$lang['bindpw']      = 'Password of above user';
1410bf8148SAndreas Gohr$lang['userscope']   = 'Limit search scope for user search';
1510bf8148SAndreas Gohr$lang['groupscope']  = 'Limit search scope for group search';
16*84f66e9fSSascha Klopp$lang['userkey']     = 'Attribute denoting the username; must be consistent to userfilter.';
1745970804SKlap-in$lang['groupkey']    = 'Group membership from any user attribute (instead of standard AD groups) e.g. group from department or telephone number';
18*84f66e9fSSascha Klopp$lang['modPass']     = 'Can the LDAP password be changed via dokuwiki?';
1910bf8148SAndreas Gohr$lang['debug']       = 'Display additional debug information on errors';
20e7fbe189SAndreas Gohr
21e7fbe189SAndreas Gohr
22e7fbe189SAndreas Gohr$lang['deref_o_0']   = 'LDAP_DEREF_NEVER';
23e7fbe189SAndreas Gohr$lang['deref_o_1']   = 'LDAP_DEREF_SEARCHING';
24e7fbe189SAndreas Gohr$lang['deref_o_2']   = 'LDAP_DEREF_FINDING';
25e7fbe189SAndreas Gohr$lang['deref_o_3']   = 'LDAP_DEREF_ALWAYS';
26d75d76b2SAndreas Gohr
27d75d76b2SAndreas Gohr$lang['referrals_o_-1'] = 'use default';
28d75d76b2SAndreas Gohr$lang['referrals_o_0']  = 'don\'t follow referrals';
29d75d76b2SAndreas Gohr$lang['referrals_o_1']  = 'follow referrals';