Pls Help Me on Mantis Email settings

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
nantha84
Posts: 2
Joined: 30 May 2012, 13:43

Pls Help Me on Mantis Email settings

Post by nantha84 »

HI All,

It still confusing to set up the Mantis Email settings.
I follow up the " http://www.mantisbt.org/forums/viewtopi ... =3&t=15398 " topic, but not helping me.

I still not able to set up. It still confusing.

Which file i need to set up?

config_inc.php
config_defaults_inc.php

And also
php.ini
php.ini-production

Please do help me on this.

Thank You
pay2play
Posts: 13
Joined: 01 Jun 2012, 20:57

Re: Pls Help Me on Mantis Email settings

Post by pay2play »

Place the following in your config_inc file and replace what is after the equal sign with your information:

$g_administrator_email = 'administrator@example.com';
$g_webmaster_email = 'webmaster@example.com';
$g_from_email = 'noreply@example.com';
$g_from_name = 'Mantis Bug Tracker';
$g_return_path_email = 'admin@example.com';

Then place the following in your config_inc file and configure the settings according to your needs:

$g_enable_email_notification = ON;
$g_validate_email = ON;
$g_check_mx_record = OFF;
$g_allow_blank_email = OFF;
$g_limit_email_domain = OFF;
$g_show_user_email_threshold = NOBODY;
$g_show_user_realname_threshold = NOBODY;
$g_mail_priority = 3;

Finally place the following in you config_inc file and configure your phpMailer method and SMTP settings:

$g_phpMailer_method =
$g_smtp_host = 'localhost';
$g_smtp_username = '';
$g_smtp_password = '';
$g_smtp_connection_mode = '';
$g_smtp_port = 25;

Remember, changes should never be made in config_defaults_inc as they will get overwritten if/when you upgrade Mantis.
Post Reply