xref: /plugin/pureldap/conf/metadata.php (revision 9446f9efcf6a07f32e7ce6e6706899c1a2a9ef42)
179f39653SAndreas Gohr<?php
279f39653SAndreas Gohr/**
379f39653SAndreas Gohr * Options for the pureldap plugin
479f39653SAndreas Gohr *
579f39653SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
679f39653SAndreas Gohr */
779f39653SAndreas Gohr
86d90d5c8SAndreas Gohr$meta['base_dn'] = array('string');
979f39653SAndreas Gohr
101078ec26SAndreas Gohr$meta['servers'] = array('array');
111078ec26SAndreas Gohr$meta['port'] = array('string');
126d90d5c8SAndreas Gohr
136d90d5c8SAndreas Gohr$meta['encryption'] = array('multichoice', '_choices' => array('none', 'ssl', 'tls'));
146d90d5c8SAndreas Gohr$meta['validate'] = array('multichoice', '_choices' => array('strict','self', 'none'));
156d90d5c8SAndreas Gohr
16*9446f9efSAndreas Gohr$meta['admin_username'] = array('string');
176d90d5c8SAndreas Gohr$meta['admin_password'] = array('password');
186d90d5c8SAndreas Gohr
1979f39653SAndreas Gohr
20