config_default.php 994 B

12345678910111213141516171819202122232425262728293031
  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 &copy; 2005-2008 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. * Admin email
  17. * @global string $bug_report_admin_email
  18. */
  19. $bug_report_admin_email = '';
  20. /**
  21. * Controls availability of bug_report plugin to end users.
  22. * If option is set to false, only interface admins can use
  23. * bug_report plugin. If option is set to true and admin email
  24. * is set, bug_report plugin can be used by other interface
  25. * users. Information about setting administrative users can be
  26. * found in plugins/bug_report/README
  27. * @global boolean $bug_report_allow_users
  28. */
  29. $bug_report_allow_users = false;