xref: /plugin/pureldap/lang/en/settings.php (revision 0f498d06932ad0cbbdcc8844b96d4913174c7968)
179f39653SAndreas Gohr<?php
279f39653SAndreas Gohr/**
379f39653SAndreas Gohr * english language file for pureldap plugin
479f39653SAndreas Gohr *
579f39653SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
679f39653SAndreas Gohr */
779f39653SAndreas Gohr
86d90d5c8SAndreas Gohr$lang['base_dn'] = 'Your base DN. Eg. <code>DC=my,DC=domain,DC=org</code>';
9c2500b44SAndreas Gohr$lang['suffix'] = 'Your account suffix. Eg. <code>my.domain.org</code>';
106d90d5c8SAndreas Gohr
116d90d5c8SAndreas Gohr$lang['servers'] = 'Comma-separated list of your LDAP/AD servers. Servers are tried in order until one connects.';
126d90d5c8SAndreas Gohr$lang['port'] = 'LDAP/AD server port. Empty for default port.';
136d90d5c8SAndreas Gohr
146d90d5c8SAndreas Gohr$lang['encryption'] = 'What encryption should be used to talk to the servers?';
156d90d5c8SAndreas Gohr$lang['encryption_o_none'] = 'No encryption (default port 389)';
166d90d5c8SAndreas Gohr$lang['encryption_o_ssl'] = 'SSL (default port 636)';
176d90d5c8SAndreas Gohr$lang['encryption_o_tls'] = 'STARTTLS (default port 389)';
186d90d5c8SAndreas Gohr
196d90d5c8SAndreas Gohr$lang['validate'] = 'Validate SSL certificates on encrypted connections?';
206d90d5c8SAndreas Gohr$lang['validate_o_strict'] = 'Strict validation';
216d90d5c8SAndreas Gohr$lang['validate_o_self'] = 'Allow self-signed certificates';
226d90d5c8SAndreas Gohr$lang['validate_o_none'] = 'Accept all certificates (no validation)';
236d90d5c8SAndreas Gohr
2408ace392SAndreas Gohr$lang['admin_username'] = 'A user with access to all other user\'s data. Needed for certain actions like sending subscription mails. Needs additional privileges for password resets.';
256d90d5c8SAndreas Gohr$lang['admin_password'] = 'The password of the above user.';
266d90d5c8SAndreas Gohr
27b914569fSAndreas Gohr$lang['attributes'] = 'A comma separated list of additional attributes to fetch for users. May be used by some plugins.';
280cddcb29SAndreas Gohr$lang['primarygroup'] = 'The name of your users primary group. Usually a localized version of <code>Domain Users</code>, eg. <code>Domänen-Benutzer</code>.';
29f17bb68bSAndreas Gohr$lang['recursivegroups'] = 'Correctly fetch nested group memberships for users? Increases LDAP requests and load on the AD server.';
30*0f498d06SAndreas Gohr$lang['expirywarn'] = 'Number of days before password expiry to warn the user. Set to 0 to disable.';
315dcabedaSAndreas Gohr$lang['usefscache'] = 'Cache LDAP data on disk to speed up reoccuring queries. Check the <code>securitytimeout</code> for the maximum cache time.';
324b0f7b75SAndreas Gohr$lang['page_size'] = 'The maximum number of results to retrieve from the server in one request. Larger numbers speed up large queries but require more RAM.';
334b0f7b75SAndreas Gohr
34bf69b89cSAndreas Gohr$lang['sso'] = 'Use Single-Sign-On (SSO). This requires the appropriate web server setup.';
3508ace392SAndreas Gohr$lang['sso_charset'] = 'If your webserver passes usernames in another charset than UTF-8, configure it here and make sure the iconv or mbstring extension is available.';
36