1*10bf8148SAndreas Gohr<?php 2*10bf8148SAndreas Gohr$lang['server'] = 'Your LDAP server. Either hostname (<code>localhost</code>) or full qualified URL (<code>ldap://server.tld:389</code>)'; 3*10bf8148SAndreas Gohr$lang['port'] = 'LDAP server port if no full URL was given above'; 4*10bf8148SAndreas Gohr$lang['usertree'] = 'Where to finde the user accounts. Eg. <code>ou=People, dc=server, dc=tld</code>'; 5*10bf8148SAndreas Gohr$lang['grouptree'] = 'Where to find the user groups. Eg. <code>ou=Group, dc=server, dc=tld</code>'; 6*10bf8148SAndreas Gohr$lang['userfilter'] = 'LDAP filter to search for user accounts. Eg. <code>(&(uid=%{user})(objectClass=posixAccount))</code>'; 7*10bf8148SAndreas Gohr$lang['groupfilter'] = 'LDAP filter to search for groups. Eg. <code>(&(objectClass=posixGroup)(|(gidNumber=%{gid})(memberUID=%{user})))</code>'; 8*10bf8148SAndreas Gohr$lang['version'] = 'The protocol version to use. You may need to set this to <code>3</code>'; 9*10bf8148SAndreas Gohr$lang['starttls'] = 'Use TLS connections?'; 10*10bf8148SAndreas Gohr$lang['referrals'] = 'Shall referrals be followed?'; 11*10bf8148SAndreas Gohr$lang['binddn'] = 'DN of an ptional bind user if anonymous bind is not sufficient. Eg. <code>cn=admin, dc=my, dc=home</code>'; 12*10bf8148SAndreas Gohr$lang['bindpw'] = 'Password of above user'; 13*10bf8148SAndreas Gohr$lang['userscope'] = 'Limit search scope for user search'; 14*10bf8148SAndreas Gohr$lang['groupscope'] = 'Limit search scope for group search'; 15*10bf8148SAndreas Gohr$lang['debug'] = 'Display additional debug information on errors';