diff options
-rw-r--r-- | lib/plugins/authad/conf/metadata.php | 14 | ||||
-rw-r--r-- | lib/plugins/authad/lang/en/settings.php | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/lib/plugins/authad/conf/metadata.php b/lib/plugins/authad/conf/metadata.php new file mode 100644 index 000000000..dc251a108 --- /dev/null +++ b/lib/plugins/authad/conf/metadata.php @@ -0,0 +1,14 @@ +<?php + +$meta['account_suffix'] = array('string'); +$meta['base_dn'] = array('string'); +$meta['domain_controllers'] = array('string'); +$meta['sso'] = array('onoff'); +$meta['ad_username'] = array('string'); +$meta['ad_password'] = array('password'); +$meta['real_primarygroup'] = array('onoff'); +$meta['use_ssl'] = array('onoff'); +$meta['use_tls'] = array('onoff'); +$meta['debug'] = array('onoff'); +$meta['expirywarn'] = array('numeric', '_min'=>0); +$meta['additional'] = array('string');
\ No newline at end of file diff --git a/lib/plugins/authad/lang/en/settings.php b/lib/plugins/authad/lang/en/settings.php new file mode 100644 index 000000000..41176847a --- /dev/null +++ b/lib/plugins/authad/lang/en/settings.php @@ -0,0 +1,14 @@ +<?php + +$lang['account_suffix'] = 'Your account suffix. Eg. <code>@my.domain.org</code>'; +$lang['base_dn'] = 'Your base DN. Eg. <code>DC=my,DC=domain,DC=org</code>'; +$lang['domain_controllers'] = 'A comma separated list of Domain controllers. Eg. <code>srv1.domain.org,srv2.domain.org</code>'; +$lang['ad_username'] = 'A privileged Active Directory user with access to all other user\'s data. Optional, but needed for certain actions like sending subscription mails.'; +$lang['ad_password'] = 'The password of the above user.'; +$lang['sso'] = 'Should Single-Sign-On via Kerberos or NTLM be used?'; +$lang['real_primarygroup'] = 'Should the real primary group be resolved instead of assuming "Domain Users" (slower)'; +$lang['use_ssl'] = 'Use SSL connection? If used, do not enable TLS below.'; +$lang['use_tls'] = 'Use TLS connection? If used, do not enable SSL above.'; +$lang['debug'] = 'Display additional debugging output on errors?'; +$lang['expirywarn'] = 'Days in advance to warn user about expiring password. 0 to disable.'; +$lang['additional'] = 'A comma separated list of additional AD attributes to fetch from user data. Used by some plugins.';
\ No newline at end of file |