已编辑!
没有SSL,只有服务器地址和端口25可以正常工作,但我想使用SSL。
原来的:
我使用旧服务器提供邮件服务,使用新服务器提供网页服务。我在网络服务器上安装了 Roundcube,运行良好……如果我只阅读邮件。因此 imap 可以工作,但 SMTP 不行。问题是什么?此配置在旧服务器上正常运行。
$config['smtp_log'] = true;
$config['smtp_debug'] = true;
$config['smtp_host'] = 'ssl://mail.domain.tld:465';
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
我想将邮件服务器和网页分开。
在我的旧服务器的 mail.log 中看不到来自新服务器的 smtp 连接尝试,只有 imap。
这是我的errors.log(在roundcube日志目录中):
[2024-Aug-17 08:10:34 +0000]: <j92l4ng8> PHP Error: Connection refused (POST /?_task=mail&_unlock=loading1723882234954&_framed=1&_lang=hu&_action=send)
[2024-Aug-17 08:10:34 +0000]: <j92l4ng8> PHP Error: Failed to connect socket: Connection refused (POST /?_task=mail&_unlock=loading1723882234954&_framed=1&_lang=hu&_action=send)
[2024-Aug-17 08:10:34 +0000]: <j92l4ng8> SMTP Error: Connection failed: (Code: -1) in /var/www/webmail/program/lib/Roundcube/rcube.php on line 1794 (POST /?_task=mail&_unlock=loading1723882234954&_framed=1&_lang=hu&_action=send)
谢谢。