51Testing软件测试论坛

标题: mantis邮件服务配置 [打印本页]

作者: 楠族开心果    时间: 2012-4-11 09:47
标题: mantis邮件服务配置
1.在apache下的php.ini中 修改

[mail function];
For Win32 only.
SMTP = 192.168.0.3 ;                         // 或者smtp.hostname.com,我用的是:smtp.163.com
For Win32 only.
sendmail_from =xxx@163.com;      //公司内部邮箱地址


;注:没有测试php.ini所以导致发生错误提示
ROBLEMS SENDING MAIL TO:
;Mailer Error: Could not instantiate mail function.

2.mantis下的config_default.inc.php中内容设置为
$g_administrator_email  ='XXX@163.com';
$g_webmaster_email      ='XXX@163.com';
$g_from_email           ='XXX@163.com';
$g_return_path_email    ='XXX@163.com';$g_phpMailer_method = 2;$g_smtp_host = 'smtp.163.com'; $g_smtp_username = '';//不需要填写 $g_smtp_password = '';//不需要填写$g_smtp_port = 25;



3 mantis文件夹下的config_.inc.php中修改如下:
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = '******';                                //数据库的密码
$g_smtp_host='smtp.163.com';                       //设置邮箱的发送地址
$g_smtp_username='XXX@163.com';           //设置邮箱的用户名,就是自己的邮箱
$g_smtp_password='*********';                       //设置邮箱的密码。自己邮箱的真实密码,一般为公司的邮箱
$g_phpMailer_method =2;

4.最后重启apache
作者: hlq0514    时间: 2012-4-11 11:02
顶一下!




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2