xref: /plugin/pureldap/lang/en/settings.php (revision b914569fe2bf0cc586f78951bd0c636bc6597916)
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>';
96d90d5c8SAndreas Gohr
106d90d5c8SAndreas Gohr$lang['servers'] = 'Comma-separated list of your LDAP/AD servers. Servers are tried in order until one connects.';
116d90d5c8SAndreas Gohr$lang['port'] = 'LDAP/AD server port. Empty for default port.';
126d90d5c8SAndreas Gohr
136d90d5c8SAndreas Gohr$lang['encryption'] = 'What encryption should be used to talk to the servers?';
146d90d5c8SAndreas Gohr$lang['encryption_o_none'] = 'No encryption (default port 389)';
156d90d5c8SAndreas Gohr$lang['encryption_o_ssl'] = 'SSL (default port 636)';
166d90d5c8SAndreas Gohr$lang['encryption_o_tls'] = 'STARTTLS (default port 389)';
176d90d5c8SAndreas Gohr
186d90d5c8SAndreas Gohr$lang['validate'] = 'Validate SSL certificates on encrypted connections?';
196d90d5c8SAndreas Gohr$lang['validate_o_strict'] = 'Strict validation';
206d90d5c8SAndreas Gohr$lang['validate_o_self'] = 'Allow self-signed certificates';
216d90d5c8SAndreas Gohr$lang['validate_o_none'] = 'Accept all certificates (no validation)';
226d90d5c8SAndreas Gohr
239446f9efSAndreas Gohr$lang['admin_username'] = 'A privileged user with access to all other user\'s data. Needed for certain actions like sending subscription mails.';
246d90d5c8SAndreas Gohr$lang['admin_password'] = 'The password of the above user.';
256d90d5c8SAndreas Gohr
26*b914569fSAndreas Gohr$lang['attributes'] = 'A comma separated list of additional attributes to fetch for users. May be used by some plugins.';
274b0f7b75SAndreas 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.';
284b0f7b75SAndreas Gohr
2979f39653SAndreas Gohr
30