Page 1 of 1

E-mail in Account Preferences

Posted: 27 Oct 2011, 11:57
by jmr-just
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

Re: E-mail in Account Preferences

Posted: 28 Oct 2011, 06:58
by atrol
You can enable email tracing to see what happens
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

Posted: 28 Oct 2011, 12:11
by jmr-just
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

Re: E-mail in Account Preferences

Posted: 28 Oct 2011, 12:38
by atrol
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

Code: Select all

$g_email_receive_own= ON;

Re: E-mail in Account Preferences

Posted: 11 Jun 2012, 11:58
by nkewana
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.

Re: E-mail in Account Preferences

Posted: 13 Jun 2012, 09:22
by atrol
nkewana, did you enable logging?
atrol wrote:You can enable email tracing to see what happens
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';