xref: /plugin/authssocas/lang/en/settings.php (revision a3e10dfab52e5e1c640768ce5bb7909a74873d9c)
1<?php
2$lang['name'] = 'Name of the authentication service';
3$lang['logourl'] = 'URL of the logo for the CAS service. If using HTTPS, the URL must be either relative or use HTTPS.';
4
5$lang['server'] = 'FQDN of the CAS server (e.g. cas.example.com)';
6$lang['port'] = 'Port of the CAS server (e.g. 443)';
7$lang['rootcas'] = 'Path of the CAS service (e.g. /cas)';
8$lang['logfileuser'] = 'Log file name. If defined, user logins will be recorded in this file located in the log directory. Time is in UTC.';
9$lang['http_header_real_ip'] = 'HTTP header containing the real client IP. Use this if DokuWiki is behind a reverse proxy.';
10
11$lang['handlelogoutrequest'] = 'Handle CAS logout requests (Single Logout)';
12$lang['handlelogoutrequestTrustedHosts'] = 'Trusted hosts for CAS logout requests (FQDN or IP), separated by commas. Performs reverse DNS resolution. Be careful if behind a reverse proxy.';
13
14$lang['autologin'] = 'Enable automatic login if the user is already authenticated with CAS';
15
16$lang['group_attribut'] = 'CAS attribute containing the user\'s group list.';
17$lang['group_attribut_separator'] = 'By default, the group attribute should be an array. If it is a string, specify the separator used (e.g. comma, semicolon, etc.).';
18$lang['name_attribut'] = 'CAS attribute containing the user\'s full name.';
19$lang['mail_attribut'] = 'CAS attribute containing the user\'s email address.';
20$lang['uid_attribut'] = 'CAS attribute containing the user\'s unique identifier (UID).';
21
22$lang['cacert'] = 'Content of the certificate authority that signed the CAS server\'s certificate.';
23$lang['debug'] = 'Enable debug mode for phpCAS (detailed logging).';
24