Hi,
could someone please help me with a simple step by step tutorial how to set up emailing on my new MantisBT installation.
The server I am using is a win XP and I am not familiar to Linux.
I have searched for a solution but I cant get mantis to send any emails. (Sending email trough my SMTP server works if I set up an account in outlook express...)
I have tried to make changes in php.ini, add include_path, copied phpmailer class files to this path, changed the mantis config_defaults_inc.php but no emails!
Installation before the email problem was without any problems!
thanx
/jive02
Mantis on a Wampserver - tutorial for setting up remote SMTP
Moderators: Developer, Contributor
Re: Mantis on a Wampserver - tutorial for setting up remote
Hi.
By default, Mantis use a php library to send mail. So, you shouldn't have any modification to add if you didn't touch your php config files.
You just need these lines in your config_inc.php file :
$g_phpMailer_method='2';
$g_smtp_host='your.smtp.server';
(sometimes you should have to comment the second line "$g_smtp_host='your.smtp.server'; ", depending on what is running on your server)
By default, Mantis use a php library to send mail. So, you shouldn't have any modification to add if you didn't touch your php config files.
You just need these lines in your config_inc.php file :
$g_phpMailer_method='2';
$g_smtp_host='your.smtp.server';
(sometimes you should have to comment the second line "$g_smtp_host='your.smtp.server'; ", depending on what is running on your server)
Re: Mantis on a Wampserver - tutorial for setting up remote
Super! Worked like a charm!