1<?php
2/**
3 * Options for the discussion plugin
4 */
5
6$conf['send_email']    = 0;   // Send email off by default
7$conf['email_address']  = 'email@yourdomain.com';   // should unregistred users be able to comment?
8$conf['use_captcha']    = 1;   // Use captcha on by default
9$conf['severities']    = 'Minor Bug,Feature Request,Major Bug';   // List of severities
10$conf['email_subject_template'] = "The bug report @ID@ in the project @PROJECT@ changed";
11$conf['email_body_template'] = "Hi, \n\nYou receive this bug change notification as you report the bug #@ID@ in the project '@PROJECT@'.\n\n--------------------------------------------------------------------------------\n\nWhat : @FIELD@\n\nRemoved: @OLDVALUE@\n\nAdded: @VALUE@";
12$conf['statuses'] = 'New,Fixed,Closed'; // List of statuses
13//Setup VIM: ex: et ts=2 enc=utf-8 :
14