mail_config.inc.php

来自「速度很快的PHP论坛源程序」· PHP 代码 · 共 70 行

PHP
70
字号
<?php

/*
	[DISCUZ!] mail_config.php - mail sending configuration
	This is NOT a freeware, use is subject to license terms

	For further information, please read faq.txt

	Version: 4.0.0
	Web: http://www.comsenz.com
	Copyright: 2001-2005 Comsenz Technology Ltd.
	Last Modified: 2004/9/19 01:53
*/

// [EN] !ATTENTION! Type 2 & type 3 are only experimental, we do not provide any guarantee or support of this
// [CH] 注意: 发送方式 2 和 3 仅供实验用并小规模测试可行, 我们不对此提供任何保证和技术支持

$sendmail_silent = 1;		// ignore error reporting, 1=yes, 0=no
				// 屏蔽邮件发送中的全部错误提示, 1=是, 0=否

$mailsend = 1;			// Sending type	0=do not send any mails
				//		1=send via PHP mail() function and UNIX sendmail
				//		2=send via Discuz! SMTP/ESMTP interface
				//		3=send via PHP mail() and SMTP(only for win32, do not support ESMTP)

				// 邮件发送方式	0=不发送任何邮件
				//		1=通过 PHP 函数及 UNIX sendmail 发送(推荐此方式)
				//		2=通过 SOCKET 连接 SMTP 服务器发送(支持 ESMTP 验证)
				//		3=通过 PHP 函数 SMTP 发送 Email(仅 win32 下有效, 不支持 ESMTP)
				//
				// 可通过 utilities/testmail.php 测试您的系统支持哪种邮件发送方式

if($mailsend == 1) {

	// Send via PHP mail() and UNIX sendmail(no extra configuration)
	// 通过 PHP 函数及 UNIX sendmail 发信(无需配置)

} elseif($mailsend == 2) {	// send via Discuz! ESMTP interface
				// 通过 Discuz! SMTP 模块发信
	$mailcfg['server'] = 'smtp.21cn.com';			// SMTP host address
								// SMTP 服务器

	$mailcfg['port'] = '25';				// SMTP 端口, 默认不需修改
								// SMTP port, leave default for most occations

	$mailcfg['auth'] = 1;					// require authentification? 1=yes, 0=no
								// 是否需要 AUTH LOGIN 验证, 1=是, 0=否

	$mailcfg['from'] = 'Discuz <myaccount@21cn.com>';	// mail from (if authentification required, do use local email address of ESMTP server)
								// 发信人地址 (如果需要验证,必须为本服务器地址)

	$mailcfg['auth_username'] = 'myaccount';		// username for authentification
								// 验证用户名

	$mailcfg['auth_password'] = 'password';			// password for authentification
								// 验证密码

} elseif($mailsend == 3) {	// send via PHP mail() and SMTP(only for win32, do not support ESMTP)
				// 通过 PHP 函数及 SMTP 服务器发信

	$mailcfg['server'] = 'smtp.your.com';		// SMTP host address
							// SMTP 服务器

	$mailcfg['port'] = '25';			// SMTP 端口, 默认不需修改
							// SMTP port

}

?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?