我需要一些帮助删除标题中的文本。我在删除(Postfix)
中的文本mime_header_checks
时遇到了问题。
当我尝试这些时:
/^(.*)(Postfix)(.*)/ REPLACE ${1} ${2}
/^.*Postfix.*/ REPLACE ${1}${2}
/^(.*)(Postfix)(.*)/ REPLACE ${1}test${2}
/^\s*(Postfix)[^\n]*(.*)/ REPLACE $1
/^.*Postfix.* IGNORE
/\(Postfix\)(.*) IGNORE
/\(Postfix\)(.*)/ IGNORE
/^*.Postfix .*/ IGNORE
它仍像这样在标题中显示文本(Postfix)
:
Received: from mydomain.com (gateway1.mydomain.com [104.xxx.xxx.xx])
by mail.mydomain.com (Postfix) with ESMTPSA id 978B77B89E63
这是我要实现的目标:
Received: from mydomain.com (gateway1.mydomain.com [104.xxx.xxx.xx])
by mail.mydomain.com with ESMTPSA id 978B77B89E63
mime_header_checks
显示的内容如下:
/^(.*)localhost(.*)/ REPLACE ${1}mydomain.com${2}
#/^(.*)(Postfix)(.*)/ REPLACE ${1} ${2}
/^\s*(Postfix)[^\n]*(.*)/ REPLACE $1 [127.0.0.1] (localhost [127.0.0.1])$2
请问我如何删除(Postfix)
中的文本mime_header_checks
?
你知道我该怎么做吗?
如果您知道如何删除它,是否知道需要配置什么文件或需要在mime_header_checks
中输入什么才能删除文本(Postfix)
? / p>
谢谢