1.1.8. 分派列表显示真实姓名
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服务器设置:
$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';
邮件帐号设置:
$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';
以上内容进行对应的设置;