email notification to reporter

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
bartoszx

email notification to reporter

Post 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.
xyz123

Post 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.
Post Reply