linux – 如何在Postfix中强制发件人地址为“logged-in-user@example.org”?

前端之家收集整理的这篇文章主要介绍了linux – 如何在Postfix中强制发件人地址为“logged-in-user@example.org”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经设置了一个带有SMTP AUTH的Postfix服务器(端口587上的STARTTLS).我的所有用户都在“example.org”域中.我想强制发件人地址为“logged-in-user@example.org”.

我了解到这可以通过main.cf选项实现

smtpd_sender_restrictions = reject_sender_login_mismatch,...
smtpd_sender_login_maps = hash:/etc/postfix/smtpd_sender_login_maps

使用login_maps文件,如:

a@example.org a
b@example.org b
c@example.org c
...

(另请参阅Block sender address spoofing with SMPT AUTH),但这意味着每次有新用户时我都必须编辑login_maps文件.我不需要这样灵活的映射:它应该始终是“logged-in-user@example.org”.有更简单的选择吗?

解决方法

首先,通过输入命令postconf -m并在其中查找带有pcre的行来检查Postfix的安装是否支持pcre.一旦确认您有pcre支持,您可以执行以下操作:

/etc/postfix/login_maps.pcre:

/^(.*)@example\.org$/   ${1}

在main.cf中:

smtpd_sender_login_maps = pcre:/etc/postfix/login_maps.pcre

这应该工作正常.

原文链接:https://www.f2er.com/linux/402136.html

猜你在找的Linux相关文章