$g_to_email replacement

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
dvl
Posts: 5
Joined: 22 Jun 2005, 02:44

$g_to_email replacement

Post by dvl »

I have been reading the documentation and user comments on the removal of $g_to_email. The documentation refers to creating a dummy user with "appropriate access level". I seem unable to do this.

I am using Mantis 1.0.0a3.

I have created a dummy user and given them the email address of a mailing list. The account preferences for that user are set to get all types of notifications for any severity level. At present, they seem to be notified only of bugs they participate in. I want them to know everything about everything.


I have the default value:

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

$g_notify_flags['new'] = array('bugnotes' => OFF,
'monitor' => OFF);

Clues please. The goal: a mailing list to which all changes are sent. Thank you.
thraxisp
Developer
Posts: 509
Joined: 14 Feb 2005, 03:38
Location: Ottawa, Canada
Contact:

Post by thraxisp »

Make the list user a Manager. Then set

Code: Select all

$g_default_notify_flags['threshold_min'] = MANAGER;
$g_default_notify_flags['threshold_max'] = MANAGER;
Post Reply