RoundCube Webmail 发邮件错误530处理方法
发表于 : 2015年3月23日, 23:59
530错误,不能发送邮件,原因是Roundcube和hmailserver不能连接,意思就是Roundcube smtp是以什么方式登入??
我的处理方法是修改Roundcube文件下config.inc.php
我的处理方法是修改Roundcube文件下config.inc.php
代码: 全选
$config['smtp_server'] = 'localhost';
$config['smtp_port'] = 25;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['smtp_auth_type'] = 'LOGIN';