I have problems with configuring my email settings.
I am using testlink V1.8.4 on a hosted server (sitegrond), where I also have several other applications installed. For all other applications, I was always able to get the email working.
here are my settings of the config.inc.php
Code: Select all
/** [SMTP] */
// Developer Note:
// these config variable names has been choosed to maintain compatibility
// with code taken from Mantis.
//
// SMTP server Configuration ("localhost" is enough in the most cases)
$g_smtp_host = 'localhost'; # SMTP server MUST BE configured
# Configure using custom_config.inc.php
$g_tl_admin_email = '[i]valid@email.adress[/i]'; # for problem/error notification
$g_from_email = '[i]valid@email.adress[/i]'; # email sender
$g_return_path_email = '[i]valid@email.adress[/i]';
# Urgent = 1, Not Urgent = 5, Disable = 0
$g_mail_priority = 5;
# Taken from mantis for phpmailer config
define ("SMTP_SEND",2);
$g_phpMailer_method = SMTP_SEND;
// Configure only if SMTP server requires authentication
$g_smtp_username = ''; # user
$g_smtp_password = ''; # password
I want to use the phpmailer functionality, just like it is being used in Joomla for example.
I have also tried external smtp servers, nut this is also not working.
Who can help ?