当前电子邮件发送/接收方式如下:
Received: from localhost.localdomain (sender.host [xx.xx.xx.xx])
by smtp.host (Postfix) with ESMTP id 7F6CC67897
for <[email protected]>; Thu, 19 Jan 2012 23:31:12 +0100 (CET)
我想发送不包含发件人位置的电子邮件(第一行):
Received: by smtp.host (Postfix) with ESMTP id 7F6CC67897
for <[email protected]>; Thu, 19 Jan 2012 23:31:12 +0100 (CET)
我知道我可以header_check,但这是正则表达式,性能会受到影响......
是否有用于此的 postix 设置变量?仅用于忽略发件人位置。
答案1
这不是有效的“已接收:”行 - 必须存在源。
您可以使用 header_checks 来代替用静态文本表示内部信息,但“已接收:”行应保持符合标准。
你为什么要这么做?