Exim4 发送的邮件被特定提供商拒绝 (@libero.it)

Exim4 发送的邮件被特定提供商拒绝 (@libero.it)

我是一名基础的 Linux 服务器用户。我花了不少耐心和精力安装了我的 Debian VPS。

我正在使用 Exim4 发送电子邮件。它确实正常工作。以下测试没有问题:

echo "This is a test." | mail -s Testing [email protected]

但我注意到发送给特定提供商的电子邮件(@libero.it在我的情况下)未收到。此提供程序使用以下配置:

IMAP:
imapmail.libero.it
Port: 993 with SSL

POP:
popmail.libero.it
Port: 995 with SSL

SMTP (with SSL):
smtp.libero.it  (authentication required)
Port: 465 with SSL

我的update-exim4.conf.conf文件如下:

dc_eximconfig_configtype='internet'
dc_other_hostnames='mindteq.com'
dc_local_interfaces=''
dc_readhost='mindteq.com'
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost=''
CFILEMODE='644'
dc_use_split_config='false'
dc_hide_mailname='true'
dc_mailname_in_oh='true'
dc_localdelivery='maildir_home'

日志显示:

2017-03-30 11:09:01 1ctbh7-0008Mg-Eb <= [email protected] U=root P=local S=774
2017-03-30 11:09:01 1ctbh7-0008Mg-Eb ** [email protected] <[email protected]> R=dnslookup T=remote_smtp: retry time not reached for any host after a long failure period

我还安装了 TLS 证书:

bash /usr/share/doc/exim4-base/examples/exim-gencert

并添加MAIN_TLS_ENABLE = yes/etc/exim4/exim4.conf.template他行之前.ifdef MAIN_TLS_ENABLE

但仍然发送电子邮件至@libero.it被拒绝。您能帮助我了解如何向这个(或这些)ISP 发送邮件吗?

相关内容