軟體開發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就建立完成了,這個最簡單。
一、 軟體環境: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,如需轉載請自行聯絡原作者
相關文章
- 解決Bugfree不能定期傳送統計郵件的問題
- Bugfree郵件傳送設定(以QQ郵箱為例)
- 開源Bug跟蹤管理工具–BugFree
- 解決jenkins 傳送郵件圖片亂碼問題Jenkins
- 郵件開發:傳送程式
- 傳送郵件出現問題
- php windows 傳送郵件PHPWindows
- JavaMail郵件傳送在linux環境下不能傳送的問題解決JavaAILinux
- 郵件傳送時的亂碼問題
- 怎麼傳送超大檔案?困擾已久的郵件大附件傳送問題解決了!
- SpringBoot開發案例之郵件多例項傳送Spring Boot
- 郵件傳送
- 傳送郵件
- foxmail能收郵件,但是無法傳送郵件的問題AI
- Java郵件(問題解決)Java
- PHP回顧之傳送郵件PHP
- ASP.NET之郵件傳送ASP.NET
- laravel傳送啟用郵件的思路和問題Laravel
- SpringBoot整合Mail傳送郵件&傳送模板郵件Spring BootAI
- Android郵件傳送詳解Android
- Android郵件傳送詳解 .Android
- Laravel 傳送郵件Laravel
- PHP傳送郵件PHP
- Django——郵件傳送Django
- java郵件傳送Java
- Laravel傳送郵件Laravel
- gmail傳送郵件AI
- Oracle郵件傳送Oracle
- java傳送郵件Java
- Powershell郵件傳送
- thinkphp 郵件傳送PHP
- centos 傳送郵件CentOS
- phpcms傳送郵件PHP
- 郵件的傳送
- 一次郵件傳送協議SMTP問題排查協議
- crontab導致的頻繁傳送郵件的問題
- Java Mail 郵件傳送(二):簡單封裝的郵件傳送JavaAI封裝
- 一次性解決python smtp 傳送outlook郵件,163郵件,qq郵件等等.Python