I have installed Mantis 1.1.0a3 and configured it properly.
Ok, the check.php page is returning me an error when I try to send a test email. It says this:
Testing Mail - PROBLEMS SENDING MAIL TO: xxx@yyy.com. Please check your php/mail server settings.
Email Address: xxx@yyy.com
Of course, the specified e-mail is different and functional. This is my configuration:
$g_administrator_email = 'xxx@yyy.com';
$g_webmaster_email = 'xxx@yyy.com';
$g_from_email = 'xxx@yyy.com';
$g_enable_email_notification = 'ON';
$g_allow_signup = 'ON';
$g_send_reset_password = 'ON';
$g_validate_email = 'ON';
$g_use_phpMailer = 'ON';
$g_phpMailer_path = '/var/www/mantis/core/phpmailer/';
$g_phpMailer_method = 2;
$g_smtp_host = 'smtp.myserver.com';
$g_smtp_username = 'myuser';
$g_smtp_password = 'mypassword';
What am I doing wrong? Whether I delete the $g_phpMailer_path variable, or modify it to point the phpMailer that my Linux distro has in another directory, it fails.
What's happening??
