email notfication to the manager

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
skozak
Posts: 2
Joined: 10 Oct 2006, 09:15

email notfication to the manager

Post by skozak »

Hi,

I dont know how to modify the config_defaults_inc.php file to be notified (I am the manager) when the new bug is posted by reporter.

$g_default_notify_flags = array('reporter' => ON,
'handler' => ON,
'monitor' => ON,
'bugnotes' => ON,
'threshold_min' => NOBODY,
'threshold_max' => NOBODY);

I have read the forum and I tried a lot of combinations, but it doesn't work. I am using 1.0.3 version

help please.....
deboutv
Posts: 507
Joined: 15 Jan 2007, 14:31
Location: La Ciotat, FRANCE
Contact:

Re: email notfication to the manager

Post by deboutv »

skozak wrote:Hi,

I dont know how to modify the config_defaults_inc.php file to be notified (I am the manager) when the new bug is posted by reporter.

$g_default_notify_flags = array('reporter' => ON,
'handler' => ON,
'monitor' => ON,
'bugnotes' => ON,
'threshold_min' => NOBODY,
'threshold_max' => NOBODY);

I have read the forum and I tried a lot of combinations, but it doesn't work. I am using 1.0.3 version

help please.....
It's written in the comment :wink:

To notify developers:
$g_notify_flags['new']['threshold_min'] = DEVELOPER;
$g_notify_flags['new']['threshold_max'] = DEVELOPER;

To notify developers and managers:
$g_notify_flags['new']['threshold_min'] = DEVELOPER;
$g_notify_flags['new']['threshold_max'] = MANAGER;

...
Want more plugins to customize Mantis?
=> http://deboutv.free.fr/mantis/

Mantis: 1.1.0, 1.1.0a2
PHP: 5.0.4
SQL: MySQL 5.0.19
OS: Linux
Narcissus
Developer
Posts: 338
Joined: 17 Feb 2005, 09:45

Post by Narcissus »

FYI: please, don't modify config_defaults_inc.php. Make any changes you need in the config_inc.php file so that upgrades won't overwrite your changes.
Post Reply