软件开发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,如需转载请自行联系原作者
目录
相关文章
|
7天前
|
网络协议 安全 测试技术
Windows安装禅道系统结合Cpolar实现公网访问内网BUG管理服务
Windows安装禅道系统结合Cpolar实现公网访问内网BUG管理服务
|
6月前
|
关系型数据库 MySQL 应用服务中间件
内网穿透——使用Windows自带的网站程序建立网站(上)
内网穿透——使用Windows自带的网站程序建立网站
|
网络协议 数据安全/隐私保护 Windows
Windows Win7建立wifi热点,手机共享WIFI上网
Windows Win7建立wifi热点,手机共享WIFI上网
153 0
|
Linux Windows Python
记一次windows环境下PaddleNLP的模型下载bug排除
记一次windows环境下PaddleNLP的模型下载bug排除
248 0
记一次windows环境下PaddleNLP的模型下载bug排除
|
测试技术 Windows
软件测试面试题:在windows下保存一个文本文件时会弹出保存对话框,如果为文件名建立测试用例,等价类应该怎样划分?
软件测试面试题:在windows下保存一个文本文件时会弹出保存对话框,如果为文件名建立测试用例,等价类应该怎样划分?
96 0
|
Windows
建立Windows Embedded Compact 7开发环境
 欢迎下载试用新一代Windows Embedded CE(Compact 7)http://www.microsoft.com/windowsembedded/zh-cn/products/windowsce/default.
|
NoSQL Ubuntu 数据库
MongoDB之建立Windows和本地虚拟机的双向连接
本文主要分享如何将MongoDB数据库在Windows系统和本地虚拟机系统建立双向连接,我们将借助MongoDB的可视化工具Robomongo来实现。
1129 0