1<?php
2/**
3 * Options for the groupmail plugin
4 *
5 * @license GNU General Public License 3 <http://www.gnu.org/licenses/>
6 * @author Bob Baddeley <bob@bobbaddeley.com>
7 * @author Marvin Thomas Rabe <mrabe@marvinrabe.de>
8 * @author Roland Wunderling <bzfwunde@gmail.com>
9 * @author Luffah <contact@luffah.xyz>
10 */
11
12$meta['default'] = array('string');
13$meta['sender_groups'] = array('string');
14$meta['recipient_groups'] = array('string');
15$meta['allow_email'] = array('onoff');
16$meta['confidentiality'] = array('multichoice','_choices' => array('one', 'bcc', 'all'));
17$meta['sendlog'] = array('string');
18$meta['captcha'] = array('onoff');
19$meta['recaptchakey'] = array('string');
20$meta['recaptchasecret'] = array('string');
21$meta['recaptchalayout']  = array('multichoice','_choices' => array('red','white','blackglass','clean'));
22