参考资料:http://www.btschina.com/home/index.php/the-bugzilla-install-and-configure.html
http://www.ishow.me/2012/09/11/929.html
Buzilla 4.2.3邮箱配置
Bugzilla自带有SMTP服务,只需开启和设置就可以使用,不需要sendmail支持。配置方法如下:
1.修改bugzilla的params文件内容
进入Bugzilla安装目录
# cd /data/apache2/htdocs/bugzilla
修改params文件
# vi params
配置其中的
maintainer : test@test.com
mail_delivery_method : SMTP
mailfrom : test@test.com
smtpserver : smtp.test.com
smtp_username: test@test.com
smtp_password : **********
注意:maintainer、mailfrom必须相同!smtp_username邮箱必须是存在的真实的邮箱,smtp_password是邮箱的密码(要与你所登陆邮箱时的密码相同)!
2.登录bugzilla进行params参数核对
访问:http://localhost/bugzilla/
用管理员账户和密码登录
登录后选择“Administartor”-》“Parameters”-》“Email”
查看并核对各参数是否正确。
3.录入一个新bug,到邮箱查看新接收到的bug邮件,如能收到就恭喜你,OK啦。^_^。
TestLink 1.9.4 邮箱配置
进入TestLink安装目录文件,修改config.inc.php配置文件内容
# cd /data/apache2/htdocs/TestLink
# vi config.inc.php
$g_smtp_host = ‘[smtp.testlink.com]‘;修改为
$g_smtp_host = ‘公司smtp邮箱域名‘;
# Configure using custom_config.inc.php 以下这三处不能有中括号,一般保持一致即可。
$g_tl_admin_email = ‘testlink@testlink.com’; # for problem/error notification
$g_from_email = ‘testlink@testlink.com’; # email sender
$g_return_path_email = ‘testlink@testlink.com’;
/** Configure only if SMTP server requires authentication */
$g_smtp_username = ‘testlink’; # user #账号和密码,有的需要加上域名有的不需要,最好加上域名。
$g_smtp_password = ’123123123′; # password
保存后,再次登录testlink:http://localhost/TestLink/,重置某一用户的密码,到该用户邮箱中查收邮件,能收到邮件就恭喜你,OK啦。^_^。