xref: /dokuwiki/lib/plugins/authldap/lang/en/settings.php (revision 6405e5fd396e2c2834736b0eaaf530f67dd4c034)
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';
146162eea8SAniol Marti$lang['attributes']  = 'Attributes to retrieve with the LDAP search.';
1510bf8148SAndreas Gohr$lang['userscope']   = 'Limit search scope for user search';
1610bf8148SAndreas Gohr$lang['groupscope']  = 'Limit search scope for group search';
1784f66e9fSSascha Klopp$lang['userkey']     = 'Attribute denoting the username; must be consistent to userfilter.';
1845970804SKlap-in$lang['groupkey']    = 'Group membership from any user attribute (instead of standard AD groups) e.g. group from department or telephone number';
1984f66e9fSSascha Klopp$lang['modPass']     = 'Can the LDAP password be changed via dokuwiki?';
20*6405e5fdSspike$lang['modPassPlain']= 'Send password updates in plain text to the LDAP server (rather than salt and hash them with the configured algorithm before transmission)?';
2110bf8148SAndreas Gohr$lang['debug']       = 'Display additional debug information on errors';
22e7fbe189SAndreas Gohr
23e7fbe189SAndreas Gohr
24e7fbe189SAndreas Gohr$lang['deref_o_0']   = 'LDAP_DEREF_NEVER';
25e7fbe189SAndreas Gohr$lang['deref_o_1']   = 'LDAP_DEREF_SEARCHING';
26e7fbe189SAndreas Gohr$lang['deref_o_2']   = 'LDAP_DEREF_FINDING';
27e7fbe189SAndreas Gohr$lang['deref_o_3']   = 'LDAP_DEREF_ALWAYS';
28d75d76b2SAndreas Gohr
29d75d76b2SAndreas Gohr$lang['referrals_o_-1'] = 'use default';
30d75d76b2SAndreas Gohr$lang['referrals_o_0']  = 'don\'t follow referrals';
31d75d76b2SAndreas Gohr$lang['referrals_o_1']  = 'follow referrals';