Testlink- SMTP Error: Could not connect to SMTP host -


i'm admin user in testlink. i'm trying reset password of user. when clicking on reset password button following message appearing. password reset can not done. reason: smtp error: not connect smtp host. please let me know how resolve issue.

/* [smtp] */  /**  * @var string smtp server name or ip address ("localhost" should work in cases)  * configure using custom_config.inc.php  * @uses lib/functions/email_api.php  */  **$g_smtp_host        = '22';  # smtp server must configured**   # configure using custom_config.inc.php  $g_tl_admin_email     = 'amirdjn@gmail.com'; # problem/error notification  $g_from_email         = 'oai-tools@oneaccess-net.com';  # email sender  $g_return_path_email  = 'amirdjn@gmail.com'; 

you can't connect smtp host because

smtp server must configured**

just set $g_smtp_host in config file:

/* [smtp] */  /**  * @var string smtp server name or ip address ("localhost" should work in cases)  * configure using custom_config.inc.php  * @uses lib/functions/email_api.php  */  # smtp server must configured**  $g_smtp_host        = 'smtp_host_fqdn';   # configure using custom_config.inc.php  $g_tl_admin_email     = 'amirdjn@gmail.com'; # problem/error notification  $g_from_email         = 'oai-tools@oneaccess-net.com';  # email sender  $g_return_path_email  = 'amirdjn@gmail.com'; 

Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -