POSTFIX header 检查 TO 和 FROM 条件
POSTFIX header checks with TO and FROM conditions
我想在我的 postfix 服务器的 headers 检查文件中添加一个新操作,有 2 个条件:同时从和到。
我已经有几行像这样检查 FROM 或 SUBJECT:
/^FROM:.*user@domain.com/ REDIRECT special@mydomain.com
此规则工作正常,但会将所有邮件从 user@domain.com 重定向到 special@mydomain.com
问题是只有当 TO 是给定的邮箱时我才需要重定向,而不是全部。
THANKS!!!!
抱歉,这是不可能的。
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: header 和 From: headerm 但不能同时检查。
我想在我的 postfix 服务器的 headers 检查文件中添加一个新操作,有 2 个条件:同时从和到。
我已经有几行像这样检查 FROM 或 SUBJECT:
/^FROM:.*user@domain.com/ REDIRECT special@mydomain.com
此规则工作正常,但会将所有邮件从 user@domain.com 重定向到 special@mydomain.com
问题是只有当 TO 是给定的邮箱时我才需要重定向,而不是全部。
THANKS!!!!
抱歉,这是不可能的。
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: header 和 From: headerm 但不能同时检查。