I have installed mantis 1.2.1 and into my config_inc.php I have configured:
Code: Select all
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.myserver.es';
$g_smtp_port = '25';
$g_smtp_username = 'soportemantis@myserver.es';
$g_smtp_password = 'zfn3!aRq';
$g_administrator_email = 'soportemantis@myserver.es';
$g_webmaster_email = 'soportemantis@myserver.es';
$g_from_name = 'Mantis Bug Tracker';
$g_from_email = 'soportemantis@myserver.es';
$g_return_path_email = 'soportemantis@myserver.es';
$g_use_phpMailer = ON;
$g_email_receive_own = ON;
$g_enable_email_notification = ON;
$g_send_reset_password = ON;
$g_allow_blank_email = OFF;
$g_validate_email = ON;
$g_check_mx_record = OFF;
$g_phpMailer_path = '/usr/local/lib/';
$g_max_file_size = 2000000; # 2 MB
Where mantis looks class.smtp.php and class.phpmailer.php classes?
thanks very much!!