Page 1 of 1

config_inc.php

Posted: 01 Jul 2010, 07:31
by Se7en
can somebody help me what exactly i need to write the email configuration in config_inc.php

what should i add since i just have

<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = 'root';
?>

in my config_inc.php

help me...thx

Re: config_inc.php

Posted: 01 Jul 2010, 08:04
by atrol

Re: config_inc.php

Posted: 01 Jul 2010, 08:25
by Se7en
thx for helping....

can i have a simple email configuration sample that at least send email when users were created......

thx thx

Re: config_inc.php

Posted: 02 Jul 2010, 03:32
by Se7en
this is my mail setting in my config_inc.php

$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_connection_mode = 'ssl';
$g_smtp_host = 'asd';
$g_smtp_port = 465;
$g_smtp_username = 'asd';
$g_smtp_password = asd';

$g_administrator_email = 'asd';
$g_webmaster_email = 'asd';
$g_from_name = 'Mantis Bug Tracker';
$g_from_email = 'asd';
$g_return_path_email = 'asd';
$g_enable_email_notification = ON;

what should i add into this file so that mantis can send mail to user when mantis create newly user??

what i left??

can someone give me a complete example??

thx