problems with emails
Posted: 13 Feb 2011, 09:16
I have spent close to 5 hours trying to get e-mail and am just about to give up on Mantis.
I have not having any success using either gmail or my hosting email service (dreamhost).
My config_inc.php contains the following:
The only log I get in mantisbt.log is: 2011-02-13 08:56 UTC mail password_reset=myemail@gmail.com
I have not having any success using either gmail or my hosting email service (dreamhost).
My config_inc.php contains the following:
Code: Select all
$g_use_phpMailer = ON;
$g_enable_email_notification = ON;
$g_administrator_email = 'myemail@gmail.com';
$g_return_path_email = 'myemail@gmail.com';
$g_from_email = 'myemail@gmail.com';
$g_from_name = 'My Bug Tracker';
$g_phpMailer_method = 2;
$g_smtp_host = 'smtp.gmail.com';
$g_smtp_port = '587';
$g_smtp_username = 'myemail@gmail.com';
$g_smtp_password = 'xxxxxxx';
$g_smtp_connection_mode = 'tls';
$g_send_reset_password = ON;
$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT;
$g_log_destination = 'file:/var/log/mantisbt.log';