1.1.8. 分派列表顯示真實(shí)姓名
config_defaults_inc.php
/**
* show users with their real name or not
* @global int $g_show_realname
*/
//$g_show_realname = OFF;
=》
$g_show_realname = ON;
1.1.9. mantis郵件配置
config_defaults_inc.php
SMTP服務(wù)器設(shè)置:
$g_phpMailer_method= PHPMAILER_METHOD_MAIL;
$g_smtp_host= 'localhost';
$g_smtp_username = '';
$g_smtp_password = '';
=>
$g_phpMailer_method= PHPMAILER_METHOD_SMTP;
$g_smtp_host= '192.168.146.182';
$g_smtp_username= 'luly@luly182.com';
$g_smtp_password= 'abc1233';
郵件帳號(hào)設(shè)置:
$g_administrator_email= 'luly@luly182.com'
$g_webmaster_email= 'luly@luly182.com'
$g_from_email= 'luly@luly182.com'
$g_from_name= 'Mantis Bug Tracker';
$g_return_path_email= 'luly@luly182.com';
以上內(nèi)容進(jìn)行對應(yīng)的設(shè)置;