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.
email notification to reporter
Moderators: Developer, Contributor
-
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.
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.