config_inc.php

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
Se7en
Posts: 16
Joined: 24 Jun 2010, 02:19

config_inc.php

Post 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
atrol
Site Admin
Posts: 8580
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: config_inc.php

Post by atrol »

Please use Search before posting and read the Manual
Se7en
Posts: 16
Joined: 24 Jun 2010, 02:19

Re: config_inc.php

Post by Se7en »

thx for helping....

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

thx thx
Se7en
Posts: 16
Joined: 24 Jun 2010, 02:19

Re: config_inc.php

Post 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
Post Reply