blob: e0815f789dd0b7ee954d95d03c742e0127b138fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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');
|