Centos6.5 Mantis 1.2.19版本邮件设置

旧巷老猫 提交于 2019-11-28 10:31:47

一.读取顺序
config_defaults_inc.php
config_inc.php


二.config_defaults_inc.php 中邮件设置

$g_administrator_email = 'test@163.com';
$g_webmaster_email = 'test@163.com';
$g_from_email = 'test@163.com';
$g_from_name = 'Mantis Bug Tracker';
$g_return_path_email = 'test@163.com';

$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.163.com';
$g_smtp_username = 'test@163.com';
$g_smtp_password = 'test7033';

三.config_inc.php 中的邮件设置
因为我的config_inc.php 是拷贝的config_inc.php.sample 作为模板所以邮件按照以下配置进行。
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.163.com';
$g_smtp_username = 'test@163.com';
$g_smtp_password = 'test7033';
$g_administrator_email = 'test@163.com';
$g_webmaster_email = 'test@163.com';
$g_from_email = 'test@163.com';
$g_return_path_email = 'test@163.com';

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!