TestLink学习三:发送邮件的两种配置方法

第一种:修改config.inc.php中的[smtp],配置为默认本地发送,用hotmail用户做接收,调试成功!(本人未尝试这种)

// ----------------------------------------------------------------------------
/** [SMTP] */

// Developer Note:
// these config variable names has been choosed to maintain compatibility
// with code taken from Mantis.
//
// SMTP server Configuration ("localhost" is enough in the most cases)

 $g_tl_admin_email = ‘[email protected]‘;#按此配置即可
 $g_from_email = ‘[email protected]‘;#按此配置即可
 $g_return_path_email = ‘[email protected]‘;#按此配置即可
 //
 # Urgent = 1, Not Urgent = 5, Disable = 0
 $g_mail_priority = 5;

 //
 # Taken from mantis for phpmailer config
 //define ("SMTP_SEND",2);
 //$g_phpMailer_method = SMTP_SEND;

//
 // SMTP Configuration
 $g_smtp_host = ‘localhost‘; # SMTP server
 //
 // Configure only if SMTP server requires
 $g_smtp_username = ‘‘; # user
 $g_smtp_password = ‘‘; # password

// ----------------------------------------------------------------------------

第二种:修改config.inc.php中的[smtp],配置为公司邮箱发送,用我公司邮箱调试成功!(本人调试成功)

// ----------------------------------------------------------------------------
/** [SMTP] */

// Developer Note:
// these config variable names has been choosed to maintain compatibility
// with code taken from Mantis.
//
// SMTP server Configuration ("localhost" is enough in the most cases)
$g_smtp_host        = ‘smtp.corp.com‘;  # SMTP 服务必须配置,可配置你公司发送邮件服务器地址

# Configure using custom_config.inc.php
$g_tl_admin_email     = ‘[email protected]‘; #问题错误通知,配置你公司的邮箱
$g_from_email         = ‘[email protected]‘;  # 收到邮件看到的发送地址

$g_return_path_email  = ‘[email protected]‘;#如果收到邮件的人进行回复的邮件地址

# Urgent = 1, Not Urgent = 5, Disable = 0
$g_mail_priority = 5;  

# Taken from mantis for phpmailer config
define ("SMTP_SEND",2);
$g_phpMailer_method = SMTP_SEND;#使用SMTP协议进行发送

// Configure only if SMTP server requires authentication
$g_smtp_username    = ‘[email protected]‘;  # smtp发送的用户名
$g_smtp_password    = ‘test‘;  # 发送用户的密码

// ----------------------------------------------------------------------------

备注:红色字体为修改部分。

时间: 2024-10-07 18:57:57

TestLink学习三:发送邮件的两种配置方法的相关文章

visualvm远程监控jvm两种配置方法

参考:http://blog.itpub.net/17203031/viewspace-765810 一.Jstatd RMI远程监控方法 VisualVM在监控本地JVM的时候是很方便的.只要应用程序运行起来,我们就可以从VisualVM里面监控出来. 远程服务器上的JVM监控就需要一些额外的配置了.目前VisualVM支持两种监控方法:Jstatd方法和基于JMX的方法.我们先介绍Jstatd方法. Jstatd方法是利用后台的RMI守护进程来实现对远程JVM的监控. 1.查看一下JAVA_

SUSE linux IP的两种配置方法

第1种SUSE Linux IP配置方法: 临时配置IPf地址,重启后配置会丢失. 配置IP地址: ifconfig eth0 192.168.1.88 netmask 255.255.255.0 up             修改网关 : route add default gw 192.168.1.254 第2种SUSE Linux IP配置方法:  配置IP地址: vi修改系统配置文件,/etc/sysconfig/network/目录下.一般是ifcfg-eth0,有部分机器可能不是这个

java:comp/env/jdbc/ 的两种配置方法

1. 在 META-INF 下建立文件: context.xml <?xml version="1.0" encoding="UTF-8"?> <Context> <Resource auth="Container" delegateProperties="foo=bar" factory="org.logicalcobwebs.proxool.ProxoolDataSource&quo

PPP的两种配置方法(pap和chap)

PAP的配置 R1上的配置 [R1]int s4/0/0 [R1-Serial4/0/0]ppp authentication-mode pap [R1-Serial4/0/0]q [R1]aaa [R1-aaa]local-user huawei password cipher 123456 Info: Add a new user. [R1-aaa]local-user huawei service-type ppp R2上的配置 [R2]int Serial 4/0/0 [R2-Seria

SpringMVC两种配置理解----web.xml还有JavaConfig

最近因为在上javaEE的课程一直在学习Spring,在网上找了很多资料,发现大多数都是通过web.xml配置的spring,而通过javaConfig配置的比较少,本人自己尝试了两种配置方法. 开发环境Eclipse+Maven+Tomcat ----------------------------------------------------------- 首先我们要清楚Spring整个工作过程---> 盗用Spring in Action里的这张图片,我们可以看到整个流程:(如果想全面了

基于华为交换机的局域网中交换机管理IP配置的两种参考方法

对于规模不大的小型局域网而言,通常没有配备对网络设备进行统一管理的系统.交换机.路由器等网络设备的管理处于离散状态,对这些设备的管理通常也是一对一的管理.在用户对网络要求不高的情况下,如接入计算机设备数少,也不在意广播等对网络性能造成的影响等等,这种情况只要在核心交换机上做简单配置把计算机等接入设备放在一个VLAN中就可以了.但是,随着接入设备的增加,这种情况的网络性能会越来越差,更不用谈网络的管理.网络的安全了.近几年,随着网络安全问题的日益突出,用户网络安全意识的加强,更多的用户开始慢慢地对

uboot学习之二----主Makefile学习之四----两种编译方法:原地编译和单独输出文件夹编译

第57-123行: 57 # 58 # U-boot build supports producing a object files to the separate external 59 # directory. Two use cases are supported: 60 # 61 # 1) Add O= to the make command line 62 # 'make O=/tmp/build all' 63 # 64 # 2) Set environement variable

struts2拦截器interceptor的三种配置方法

struts2拦截器interceptor的三种配置方法方法1. 普通配置法 <struts>     <package name="struts2" extends="struts-default">         <interceptors>             <interceptor name="myInterceptor" class="edu.hust.interceptor.

爬虫学习 17.基于scrapy-redis两种形式的分布式爬虫

爬虫学习 17.基于scrapy-redis两种形式的分布式爬虫 redis分布式部署 1.scrapy框架是否可以自己实现分布式? - 不可以.原因有二. 其一:因为多台机器上部署的scrapy会各自拥有各自的调度器,这样就使得多台机器无法分配start_urls列表中的url.(多台机器无法共享同一个调度器) 其二:多台机器爬取到的数据无法通过同一个管道对数据进行统一的数据持久出存储.(多台机器无法共享同一个管道) 2.基于scrapy-redis组件的分布式爬虫 ? - scrapy-re