我有一个关于我必须实施的邮件设置的基本问题。
我们在 DMZ 中有一个 SMTP 服务器(Postfix),它应该接收和接受我们内部用户的所有邮件。然后我们有一个内部邮件服务器,它应该通过 IMAP 向用户提供所有邮件。
问题是,不允许来自 DMZ 的连接(LDAP/s 除外)。所以内部邮件服务器已经从 DMZ 中的服务器下载了邮件。
我不确定要使用哪个工具堆栈以及如何使邮件可用于内部服务器。
编辑:所以基本上我必须在内部服务器上使用 fetchmail 做这样的事情:
poll serverDMZ.domain.com protocol POP3 envelope "Delivered-To:" localdomains example.org user "*@example.org" there with password "Passw0rd!" is * here smtpaddress localhost ssl fetchall
但我现在不知道如何在 DMZ 中配置 SMTP 服务器。