1<?php
2/**
3 * Options for the contact 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$conf['sender_groups'] = 'admin';
13$conf['recipient_groups'] = 'admin,user';
14$conf['default'] = 'user@localhost';
15$conf['allow_email'] = 0;
16$conf['confidentiality'] = 'bcc';
17$conf['sendlog'] = '';
18$conf['captcha'] = 0;
19$conf['recaptchakey'] = '';
20$conf['recaptchasecret'] = '';
21$conf['recaptchalayout'] = 'red';
22