这个问题应该在安装开始的时候进行设置的,
在进入.../install.php时进行设置,将SMTP服务器设置为你邮件服务器的ip地址,发生邮件的用户可以使用任意一个用户名(邮件服务器上面有的用户哦)。
向你这种情况可以直接去修改配置文件:
在安装过程或者通过编辑Include/Config.inc.php文件可以启用邮件通知功能。例如,修改如下SMTP服务器信息。
/* 9. SMTP param setting. */
$_CFG['Mail']['SendParam']['Host'] = 'localhost'; // The server to connect. Default is localhost
$_CFG['Mail']['SendParam']['SMTPAuth'] = false; // Whether or not to use SMTP authentication. Default is FALSE
$_CFG['Mail']['SendParam']['Username'] = ''; // The username to use for SMTP authentication.
$_CFG['Mail']['SendParam']['Password'] = ''; // The password to use for SMTP authentication.