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就建立完成了,这个最简单。
软件开发BUG跟踪之BUGFREE建立解决邮件发送问题(windows)
原创
©著作权归作者所有:来自51CTO博客作者jxwpx的原创作品,如需转载,请与作者联系,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Bugfree发送bug附件打开乱码问题
bugfree附件乱码
bugfree附件乱码 -
BugFree 国产bug管理软件
-
bug管理 -
软件开发之技能梳理
本文梳理了作为软件工程师解决现实问题应当具备的基础技能。很有参考意义,这里分享给大家!
java 搜索 字符串 数据 设计模式 -
好书分享之软件开发
《软件建模与设计:UML、用例、模式和软件体系结构》入门级好书分享
敏捷流程 软件工程 软件构建 流程图 设计模式