sendmail:重写部分信封发件人地址

sendmail:重写部分信封发件人地址

我正在sendmailAIX 服务器上进行配置,我需要重写部分信封发件人地址。

from this: [email protected]
to this: [email protected]

正如您所看到的,我需要重写部分用户名,添加"_it"并更改servername.foo.orgfoo.com

我尝试在“信封发件人重写”部分添加一些规则,但没有成功。这些是规则:

#envelope sender rewriting

SEnvFromSMTP

R$-      $@ [email protected]

R$-@$w   $@ [email protected]

R$-@$+   $@ [email protected]

R$+      $@ [email protected]

额外信息。Aix 7.1 Sendmail 版本 8.14.4

谢谢。

答案1

Sendmail 规则以完全不同的(重写)形式获取电子邮件地址。
对于您的情况,请使用以下命令查看:

#!/bin/sh
sendmail -bt << END
/tryflags es
/try esmtp [email protected]
END

相关内容