fsf changes, meant to be rebased on upstream
[squirrelmail.git] / plugins / bug_report / config_default.php
... / ...
CommitLineData
1<?php
2/**
3 * Bug Report plugin - default configuration file
4 *
5 * This file contains default Bug Report plugin configuration options.
6 * Plugin's site configuration should be stored in config/bug_report_config.php
7 * or plugins/bug_report/config.php file.
8 *
9 * @copyright 2005-2021 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
11 * @version $Id$
12 * @package plugins
13 * @subpackage bug_report
14 */
15
16/**
17 * Admin email
18 * @global string $bug_report_admin_email
19 */
20$bug_report_admin_email = '';
21
22/**
23 * Controls availability of bug_report plugin to end users.
24 * If option is set to false, only interface admins can use
25 * bug_report plugin. If option is set to true and admin email
26 * is set, bug_report plugin can be used by other interface
27 * users. Information about setting administrative users can be
28 * found in plugins/bug_report/README
29 * @global boolean $bug_report_allow_users
30 */
31$bug_report_allow_users = false;