Page 1 of 1

Mails when a Note added

Posted: 02 Feb 2011, 09:39
by benjaminrc78
Hi.

I have a problem.
I want to recieve mail when a note added and can“t see where config.
I try to config in Admin/Config Admin/Email notify .. I check all to administrator
But not come a email when note added.

I also try to put in config_inc.php this:

Code: Select all

	$g_default_notify_flags	= array('reporter'	=> ON,
									'handler'	=> ON,
									'monitor'	=> ON,
									'bugnotes'	=> ON,
									'threshold_min'	=> DEVELOPER,
									'threshold_max' => ADMINISTRATOR);

	$g_notify_flags['new']	= array('bugnote'	=> ON,
									'reopened'  => ON,
									'updated'   => ON,
									'monitor'	=> ON);

How can do it ?

Thanks.

Re: Mails when a Note added

Posted: 02 Feb 2011, 11:17
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';