1d10b5556SXylle<?php 2*a3e10dfaSWalter NICOT$lang['name'] = 'Name of the authentication service'; 3*a3e10dfaSWalter NICOT$lang['logourl'] = 'URL of the logo for the CAS service. If using HTTPS, the URL must be either relative or use HTTPS.'; 4d10b5556SXylle 5*a3e10dfaSWalter NICOT$lang['server'] = 'FQDN of the CAS server (e.g. cas.example.com)'; 6*a3e10dfaSWalter NICOT$lang['port'] = 'Port of the CAS server (e.g. 443)'; 7*a3e10dfaSWalter NICOT$lang['rootcas'] = 'Path of the CAS service (e.g. /cas)'; 8*a3e10dfaSWalter NICOT$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*a3e10dfaSWalter NICOT$lang['http_header_real_ip'] = 'HTTP header containing the real client IP. Use this if DokuWiki is behind a reverse proxy.'; 10d10b5556SXylle 11*a3e10dfaSWalter NICOT$lang['handlelogoutrequest'] = 'Handle CAS logout requests (Single Logout)'; 12*a3e10dfaSWalter NICOT$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.'; 13d10b5556SXylle 14*a3e10dfaSWalter NICOT$lang['autologin'] = 'Enable automatic login if the user is already authenticated with CAS'; 15d10b5556SXylle 16*a3e10dfaSWalter NICOT$lang['group_attribut'] = 'CAS attribute containing the user\'s group list.'; 17*a3e10dfaSWalter NICOT$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*a3e10dfaSWalter NICOT$lang['name_attribut'] = 'CAS attribute containing the user\'s full name.'; 19*a3e10dfaSWalter NICOT$lang['mail_attribut'] = 'CAS attribute containing the user\'s email address.'; 20*a3e10dfaSWalter NICOT$lang['uid_attribut'] = 'CAS attribute containing the user\'s unique identifier (UID).'; 21d10b5556SXylle 22*a3e10dfaSWalter NICOT$lang['cacert'] = 'Content of the certificate authority that signed the CAS server\'s certificate.'; 23*a3e10dfaSWalter NICOT$lang['debug'] = 'Enable debug mode for phpCAS (detailed logging).'; 24