Page 1 of 1

Email Problems with custom SMTP server

Posted: 27 Sep 2012, 10:29
by dirshah
Hi All:
I configured mantis with google's SMTP server using the link http://www.mantisbt.org/forums/viewtopi ... =3&t=15398 and it worked fine for me. From Gmail, I want to shift the smtp server to our company's email server. And I did exactly what is written in the above link, but it failed :( . I contacted the mail server administrator and found out that it requires "tls" to be configured at both the ends while it is not configured at our smtp server. So what should I do now, should I set the $g_smtp_connection_mode to empty string or disable it by commenting it out ?
One more thing the smtp server is running at port 25. Any suggestions please?

Re: Email Problems with custom SMTP server

Posted: 27 Sep 2012, 10:46
by atrol
Just remove $g_smtp_connection_mode and $g_smtp_port from your config_inc.php.
This should work, as the default settings in config_defaults_inc.php should match your installation

Code: Select all

$g_smtp_connection_mode = '';
$g_smtp_port = 25;

Re: Email Problems with custom SMTP server

Posted: 27 Sep 2012, 10:55
by dirshah
It is still not working :(