Monday, August 25, 2014

Mantis bugtracker mail configuration

I paste successful configuration for Mantis Bugtracker for sending mails (registering users, notifications, etc).

Enter (and replace with your data) this lines in config_inc.php:

$g_administrator_email = 'sender-email@mail.bg';
$g_from_email = 'sender-email@mail.bg';
$g_webmaster_email = 'sender-email@mail.bg';
$g_return_path_email = 'sender-email@mail.bg';
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.mail.bg';
$g_smtp_username = 'sender-email@mail.bg';
$g_smtp_password = 'sender-email-password';
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;
$g_email_send_using_cronjob = OFF;
$g_log_level = LOG_EMAIL;



No comments:

Post a Comment