EMail-Settings for NEW bugs doesn't work
Posted: 12 Mar 2008, 14:46
I have configured the EMail-Settings exactly like the 'paranoia-mode-example' displayed in http://www.mantisbt.org/manual/manual.c ... ations.php
But I (as a Administrator) never get a mail for a new bug. My MANAGER(s) doesn't get any mail for a new bug.
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?
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?