xref: /dokuwiki/lib/plugins/authldap/conf/metadata.php (revision 6066822340494b16ef69f77917501bfd36d9a8cf)
110bf8148SAndreas Gohr<?php
2d4f83172SAndreas Gohr
37e2d1133SChristopher Smith$meta['server']      = array('string','_caution' => 'danger');
47e2d1133SChristopher Smith$meta['port']        = array('numeric','_caution' => 'danger');
57e2d1133SChristopher Smith$meta['usertree']    = array('string','_caution' => 'danger');
67e2d1133SChristopher Smith$meta['grouptree']   = array('string','_caution' => 'danger');
77e2d1133SChristopher Smith$meta['userfilter']  = array('string','_caution' => 'danger');
87e2d1133SChristopher Smith$meta['groupfilter'] = array('string','_caution' => 'danger');
97e2d1133SChristopher Smith$meta['version']     = array('numeric','_caution' => 'danger');
107e2d1133SChristopher Smith$meta['starttls']    = array('onoff','_caution' => 'danger');
11d75d76b2SAndreas Gohr$meta['referrals']   = array('multichoice','_choices' => array(-1,0,1),'_caution' => 'danger');
127e2d1133SChristopher Smith$meta['deref']       = array('multichoice','_choices' => array(0,1,2,3),'_caution' => 'danger');
137e2d1133SChristopher Smith$meta['binddn']      = array('string','_caution' => 'danger');
148ef94e9eSAndreas Gohr$meta['bindpw']      = array('password','_caution' => 'danger','_code' => 'base64');
156162eea8SAniol Marti$meta['attributes']  = array('array');
1610bf8148SAndreas Gohr//$meta['mapping']['name']  unsupported in config manager
1710bf8148SAndreas Gohr//$meta['mapping']['grps']  unsupported in config manager
187e2d1133SChristopher Smith$meta['userscope']   = array('multichoice','_choices' => array('sub','one','base'),'_caution' => 'danger');
197e2d1133SChristopher Smith$meta['groupscope']  = array('multichoice','_choices' => array('sub','one','base'),'_caution' => 'danger');
206619ddf4SSascha Klopp$meta['userkey']     = array('string','_caution' => 'danger');
217e2d1133SChristopher Smith$meta['groupkey']    = array('string','_caution' => 'danger');
22bed4ab79SChristopher Smith$meta['debug']       = array('onoff','_caution' => 'security');
236619ddf4SSascha Klopp$meta['modPass']     = array('onoff');
24*6405e5fdSspike$meta['modPassPlain'] = array('onoff','_caution' => 'security');
25