POSTFIX标题检查TO和FROM条件

时间:2017-07-05 16:25:21

标签: postfix-mta postfix

我想在我的postfix服务器的标题检查文件中添加一个新操作,其中包含两个条件:FROM和TO。

我已经有几行检查FROM或SUBJECT,如下所示:

/^FROM:.*user@domain.com/ REDIRECT special@mydomain.com

此规则运行正常,但会将所有邮件从 user@domain.com 重定向到 special@mydomain.com

问题是,只有当 TO 是给定邮箱时才需要重定向,而不是全部。

  

感谢!!!!

1 个答案:

答案 0 :(得分:1)

抱歉,但这是不可能的。

Each message header or message body line is compared against a list  of
patterns.   When a match is found the corresponding action is executed,
and the matching process is repeated for the  next  message  header  or
message body line.

意思是,你可以检查To:标题,你可以检查From:headerm但不能同时检查。