Code: Select all
I'm paranoid about mail. Only send information on issues to those involved in them. Don't send mail people already know about. Also send new bug notifications to managers so they can screen them.
$g_mail_receive_own = OFF;
$g_default_notify_flags = array('reporter' => ON,
'handler' => ON,
'monitor' => ON,
'bugnotes' => ON,
'threshold_min' => NOBODY,
'threshold_max' => NOBODY);
$g_notify_flags['new']['threshold_min'] = MANAGER;
$g_notify_flags['new']['threshold_max'] = MANAGER;Other levels and notification are working, both ADMINISTRATOR and MANAGER get mail about changes, added bugnotes and so on. I think, it can't be a general mail-problem.
How can I debug the reason why the MANAGER and ADMINISTRATOR doesn't get a mail for a new entered bug
Could anyone push me in the right direction?