Page 1 of 1

email notification to reporter

Posted: 12 Jan 2006, 11:59
by bartoszx
Hi
I have private project and 20 users/reporters. They add about 30-40 new bugs every day. Is it possible to send email only to author of bug and develeopers?
User A (reporter) adds new bugs and he receive only emails regarding this issue and nothing else.

Posted: 22 Feb 2006, 03:59
by xyz123
It's explained in the Mantis on-line documentation.

Basically, on config_inc.php, you can configure for mail notification on each status change, handler change, update, etc.

For example:

# On new issue
$g_notify_flags['new'] = array('reporter' => ON,
'handler ' => ON,
'monitor' => OFF,
'bugnotes' => OFF,
'threshold_min' => DEVELOPER,
'threshold_max' => MANAGER);

# On changing Owner/Assignee
$g_notify_flags['owner'] = array('reporter' => OFF,
'handler ' => ON,
'monitor' => OFF,
'bugnotes' => OFF,
'threshold_min' => NOBODY,
'threshold_max' => NOBODY);

etc.