When reporters submit issues, our developers dont receive any warning/ email, that I assume they should. I have checked the server mail log, but dont see any mail sending out.
Is there anywhere I can set for this feature?
Thank you.
email developers when reporters submit issues
Moderators: Developer, Contributor
Re: email developers when reporters submit issues
Just a note that when creating accounts, Mantis does send out the login info message. So I know mail is working. But when reporters submit issues, no warning message is released
Re: email developers when reporters submit issues
You need to check the configuration for the projects involved as well as the personal preferences of the users on their account page. If any of those are configurations could be the cause. You just need to go through every one of the configuration pages and double check their settings.
Re: email developers when reporters submit issues
Hi Hung,
First be sure that you set the email notification to ON
$g_enable_email_notification = ON;
# If you wanted to have all developers get notified of new bugs you might add
# the following lines to your config file:
$g_notify_flags['new']['threshold_min'] = DEVELOPER;
$g_notify_flags['new']['threshold_max'] = DEVELOPER;
First be sure that you set the email notification to ON
$g_enable_email_notification = ON;
# If you wanted to have all developers get notified of new bugs you might add
# the following lines to your config file:
$g_notify_flags['new']['threshold_min'] = DEVELOPER;
$g_notify_flags['new']['threshold_max'] = DEVELOPER;
Best Regards,
ZakMan
ZakMan
Re: email developers when reporters submit issues
Notice that by default users don't get notified about actions done by them. Hence, if a developer reported an issue, then they will not get the notification associated with it. This behavior is due to the following configuration option:
If you want both developers and managers notified on new issues, then you will have to use the following setting:
To do this through the GUI, click "Manage" > "Manage Configuration" > "Email Notifications".
Code: Select all
# Whether user's should receive emails for their own actions
$g_email_receive_own = OFF;
Code: Select all
$g_notify_flags['new']['threshold_min'] = DEVELOPER;
$g_notify_flags['new']['threshold_max'] = MANAGER;
Migrate your MantisBT to the MantisHub Cloud