Page 1 of 1

Email configuration

Posted: 29 Mar 2017, 11:32
by Subha
Hi,

I have installed Mantis BT using XAMPP server and tried to create users, but no activation emails received after creating user.

What are the steps to follow for email configuration?

Re: Email configuration

Posted: 29 Mar 2017, 19:17
by atrol

Re: Email configuration

Posted: 03 Apr 2017, 08:07
by ak101
I am trying to do email configuration for mantis. It sends email perfectly, but it sends the url with localhost. So a user on a different device can't open my mail. Can you please tell the config file for mantis . I trying to deploy it on amazon aws.

Re: Email configuration

Posted: 06 Apr 2017, 04:31
by Subha
Can you attach me the config file you have changed to configure email. Still am struggling with email configuration.

Re: Email configuration

Posted: 17 Jul 2017, 07:44
by ankit_sky
You need to make changes in config_inc.php inside config folder.

Following things need to add in config file:
#-Email COnfigurations -
$g_enable_email_notification = ON;
$g_phpMailer_method = PHPMAILER_METHOD_MAIL;
$g_smtp_host = **************;
$g_smtp_connection_mode = 'tls';
$g_smtp_port = '465';
$g_smtp_username =************;
$g_smtp_password = ***********;
$g_webmaster_email = ***********;
$g_from_name = 'Mantis Bug Tracker';
$g_from_email = **************;
$g_return_path_email = **************;
$g_email_receive_own = ON;
$g_email_send_using_cronjob = OFF;

$g_allow_file_upload = ON;
// $g_file_upload_method = DATABASE;
$g_absolute_path_default_upload_folder = '';
$g_max_file_size = 5000000;
$g_preview_attachments_inline_max_size = 256 * 1024;