Mails when a Note added

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
benjaminrc78
Posts: 11
Joined: 02 Feb 2011, 09:32

Mails when a Note added

Post 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.
atrol
Site Admin
Posts: 8555
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Mails when a Note added

Post 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';
Please use Search before posting and read the Manual
Post Reply