我们有一个接收传入电子邮件的 PowerMTA 服务器。是否可以将特定域转发到另一个未运行 PowerMTA 的现有 SMTP 服务器?
到目前为止,我发现的解决方案是将电子邮件通过管道传输到指向另一个 SMTP 服务器的 mailx,但这看起来很hack-ish。
谢谢!
这是将 gmail.com 路由到 SendGrid 的示例。您可能需要取消注释use-unencrypted-plain-auth
某些 SMTP 提供程序。
<domain gmail.com>
queue-to sendgrid.rollup
</domain>
<domain sendgrid.rollup>
# use-unencrypted-plain-auth yes
auth-username username
auth-password password
route smtp.sendgrid.net:587
use-starttls yes
require-starttls yes
</domain>
如果您希望使用多个 SMTP 提供商来负载平衡外发电子邮件,virtual-mta
您可能想要使用。virtual-mta-pool
让我知道,我将使用其配置更新答案。