2329d86d |
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 | * |
353d074a |
9 | * @copyright 2005-2018 The SquirrelMail Project Team |
2329d86d |
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; |