软件开发BUG跟踪之BUGFREE建立解决邮件发送问题(windows)

Jason之BUGFREE安装配置
一、 软件环境:bugfree2.1.2.zip,按提示进行安装;
二、 关键是邮件发送配置:
a) Php.ini
[mail function]
; For Win32 only.
http://php.net/smtp
SMTP = mail.lilianwang.com
http://php.net/smtp-port
smtp_port = 25
b) Config.inc.php文件
/* 8. Mail setting. */
$_CFG['Mail']['On']          = true;
/* $_CFG['Mail']['FromAddress'] = "bugfree@{$_SERVER['SERVER_NAME']}"; */
$_CFG['Mail']['FromAddress'] = "master@lilianwang.com";
$_CFG['Mail']['FromName']    = 'BugFree';
$_CFG['Mail']['ReportTo']    = array();  // Where bug statistics message sened to. If empty, to all users.
$_CFG['Mail']['SendMethod']  = 'SMTP';   // MAIL|SENDMAIL|SMTP|QMAIL
另外也要更改下面
/* 9. SMTP param setting. */
$_CFG['Mail']['SendParam']['Host']     = 'mail.lilianwang.com';       // The server to connect. Default is localhost
$_CFG['Mail']['SendParam']['SMTPAuth'] = true;    // Whether or not to use SMTP authentication. Default is FALSE
$_CFG['Mail']['SendParam']['Username'] = 'master@lilianwang.com';       // The username to use for SMTP authentication.
$_CFG['Mail']['SendParam']['Password'] = '111111';       // The password to use for SMTP authentication.
三、 BUGFREE就建立完成了,这个最简单。
 









本文转自 jxwpx 51CTO博客,原文链接:http://blog.51cto.com/jxwpx/491930,如需转载请自行联系原作者
上一篇:一次邮件发送协议SMTP问题排查


下一篇:SAP Fiori Elements 公开课第一单元概要介绍