Page 1 of 1

Mail configuration

Posted: 28 May 2013, 09:46
by ramesh.g
Hi,

When i am resetting password the mail is not going from Mantis and when i checked the log message it is showing
2013-05-28 11:42 CEST mail Password reset for email = ramesh.g@mydomain
2013-05-28 11:42 CEST mail Processing e-mail queue (1 messages)
2013-05-28 11:42 CEST mail Sending message #61 queued on 2013-05-28 11:42 CEST
2013-05-28 11:42 CEST mail message #61 deleted from queue

Any idea to override this???

Re: Mail configuration

Posted: 28 May 2013, 15:11
by atrol
I don't see any problem in the log.
The mail is sent and after that deleted from the queue.

Re: Mail configuration

Posted: 29 May 2013, 08:59
by ramesh.g
atrol wrote:I don't see any problem in the log.
The mail is sent and after that deleted from the queue.
Now in the log i am getting

server error: 5.7.1 Unable to relay

I am getting this error when i try to add different domain users. (Client)

Re: Mail configuration

Posted: 29 May 2013, 09:15
by atrol

Re: Mail configuration

Posted: 04 Jun 2013, 12:28
by ramesh.g
Hi Atrol,

I found some issue in Mantis with gmail configuration.

Earlier i have used xampp-win32-1.7.3 and mantisbt-1.2.15.
The below configuration is working fine for gmail and any domain.
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = '';
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.gmail.com';
$g_smtp_username = 'mymailid';
$g_smtp_password = 'pwd';
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;
?>
But if i use xampp-win32-1.8.1-VC9 with mantisbt-1.2.15 the above config_inc is not working.
when i check the log i got
ERROR: Message could not be sent - SMTP Error: Could not connect to SMTP host.
the same gmail config i have modified as below(with quotes)
$g_phpMailer_method = 'PHPMAILER_METHOD_SMTP';
then i got the log as
2013-06-04 14:16 CEST mail Sending message #5 queued on 2013-06-04 14:16 CEST
2013-06-04 14:16 CEST mail message #5 deleted from queue
but unfortunately i have not received any mails :(

Re: Mail configuration

Posted: 05 Jun 2013, 15:39
by atrol
ramesh.g wrote: Earlier i have used xampp-win32-1.7.3 and mantisbt-1.2.15.
The below configuration is working fine for gmail and any domain.
...
But if i use xampp-win32-1.8.1-VC9 with mantisbt-1.2.15 the above config_inc is not working.
It's quite obvious that this no MantisBT but a XAMPP problem.
Maybe caused by a bug in XAMPP, maybe by a more restrictive PHP setting, ...
Check the log files of XAMPP for any errors/warnings
ramesh.g wrote: $g_phpMailer_method = 'PHPMAILER_METHOD_SMTP';
This makes no sense. PHPMAILER_METHOD_SMTP is a numeric constant and not a string.
Don't use quotes as you will get unexpected results. You will probably not connect to the SMTP server that you configured.