Hello,
Does the E-mail Notifications in the page "preference" work?
In page "Account Preferences " the case "E-mail on New " is cheked and "With Minimum Severity of" is "any" But I do not receive e-mails in case of report of new bug
With my MantisBT Email Settings (custom_config_inc.php) and project configuration (Manage / Manage Configuration / E-mail Notifications ) I receive the emails who concerns me: I am the reporter, I survey, I added a note..
Thanks
Jean-Marc
Sorry I forgot to give the version: MantisBT 1.2.8
E-mail in Account Preferences
Moderators: Developer, Contributor
Re: E-mail in Account Preferences
You can enable email tracing to see what happens
Temporary add the following lines to config_inc.php
Temporary add the following lines to config_inc.php
Code: Select all
$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT;
$g_log_destination = 'file:/tmp/mantisbt.log';Re: E-mail in Account Preferences
thank you, it's interesting to know.
This allows you to see which users are added or removed. But, in my case, my ID does not appear. But why?
I think customizing the notification preferences does not work
This allows you to see which users are added or removed. But, in my case, my ID does not appear. But why?
I think customizing the notification preferences does not work
Re: E-mail in Account Preferences
I am not sure that I understand your problem.
If you want to get a notification when submitting a new issue you have to add the following line to config_inc.php
If you want to get a notification when submitting a new issue you have to add the following line to config_inc.php
Code: Select all
$g_email_receive_own= ON;-
nkewana
Re: E-mail in Account Preferences
I have added the following line to config_inc.php:
$g_email_receive_own= ON;
and still can't receive new emails - only when I delete do I get a notification - please advise.
$g_email_receive_own= ON;
and still can't receive new emails - only when I delete do I get a notification - please advise.
Re: E-mail in Account Preferences
nkewana, did you enable logging?
atrol wrote:You can enable email tracing to see what happens
Temporary add the following lines to config_inc.phpCode: Select all
$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT; $g_log_destination = 'file:/tmp/mantisbt.log';