diff options
Diffstat (limited to 'lib/plugins/authldap/conf')
-rw-r--r-- | lib/plugins/authldap/conf/metadata.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/plugins/authldap/conf/metadata.php b/lib/plugins/authldap/conf/metadata.php new file mode 100644 index 000000000..e0815f789 --- /dev/null +++ b/lib/plugins/authldap/conf/metadata.php @@ -0,0 +1,17 @@ +<?php +$meta['server'] = array('string'); +$meta['port'] = array('numeric'); +$meta['usertree'] = array('string'); +$meta['grouptree'] = array('string'); +$meta['userfilter'] = array('string'); +$meta['groupfilter'] = array('string'); +$meta['version'] = array('numeric'); +$meta['starttls'] = array('onoff'); +$meta['referrals'] = array('onoff'); +$meta['binddn'] = array('string'); +$meta['bindpw'] = array('password'); +//$meta['mapping']['name'] unsupported in config manager +//$meta['mapping']['grps'] unsupported in config manager +$meta['userscope'] = array('multichoice','_choices' => array('sub','one','base')); +$meta['groupscope'] = array('multichoice','_choices' => array('sub','one','base')); +$meta['debug'] = array('onoff');
\ No newline at end of file |