Postfix 使用简单过滤时替换“from”

Postfix 使用简单过滤时替换“from”

我正在尝试配置 Postfix(在 RHEL 6.5 上)以修改传入消息的内容并将电子邮件转发到远程服务器。我使用管道传输到 Postfix 的 Perl 脚本来修改内容,然后使用 Sendmail 将电子邮件重新注入 Postfix。

当电子邮件第一次到达服务器时,我看到该from字段被正确初始化,但随后它被重写:

postfix/smtpd[29150]: connect from ** local domain **[x.x.x.x]
postfix/smtpd[29150]: 2CF665F6B9: client=** local domain **[x.x.x.x]
postfix/cleanup[29155]: 2CF665F6B9: message-id=<msg_172345>
postfix/qmgr[29120]: 2CF665F6B9: from=<[email protected]>, size=66895, nrcpt=1 (queue active)
postfix/pickup[29119]: 472C75F6BC: uid=600 from=<admin>
postfix/cleanup[29155]: 472C75F6BC: message-id=<msg_172345>
postfix/pipe[29159]: 2CF665F6B9: to=<[email protected]>, relay=myhook, delay=3.1, delays=3/0.01/0/0.06, dsn=2.0.0, status=sent (delivered via myhook service)
postfix/qmgr[29120]: 2CF665F6B9: removed
postfix/qmgr[29120]: 472C75F6BC: from=<admin@** local domain **>, size=67025, nrcpt=1 (queue active)

如您所见,from字段从[email protected]变为admin@** local domain **

我假设它admin来自 main.cf 中的管道user=admin,并且本地域取自/etc/hosts

我这里需要的是保留电子邮件的原始发件人,但似乎无法实现。您能给我指明正确的方向吗?

太感谢了。

编辑:

这是我的 Postfix 配置:

postconf -n
alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
data_directory = /var/lib/postfix
debug_peer_level = 2
header_checks = regexp:/etc/postfix/header_checks
html_directory = no
inet_interfaces = $myhostname, localhost
inet_protocols = all
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
myhostname = ** local domain **
newaliases_path = /usr/bin/newaliases.postfix
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
sample_directory = /usr/share/doc/postfix-2.6.6/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtp_connection_cache_on_demand = yes
smtpd_helo_required = no
transport_maps = hash:/etc/postfix/transport
unknown_local_recipient_reject_code = 550

看来我的 Postfix 不接受该-M标志。

这是主配置文件

# cat /etc/postfix/master.cf | grep -v "#"
smtp      inet  n       -       n       -       -       smtpd 
  -o content_filter=myhook:
pickup    fifo  n       -       n       60      1       pickup
cleanup   unix  n       -       n       -       0       cleanup
qmgr      fifo  n       -       n       300     1       qmgr
tlsmgr    unix  -       -       n       1000?   1       tlsmgr
rewrite   unix  -       -       n       -       -       trivial-rewrite
bounce    unix  -       -       n       -       0       bounce
defer     unix  -       -       n       -       0       bounce
trace     unix  -       -       n       -       0       bounce
verify    unix  -       -       n       -       1       verify
flush     unix  n       -       n       1000?   0       flush
proxymap  unix  -       -       n       -       -       proxymap
proxywrite unix -       -       n       -       1       proxymap
smtp      unix  -       -       n       -       -       smtp
relay     unix  -       -       n       -       -       smtp
        -o smtp_fallback_relay=
showq     unix  n       -       n       -       -       showq
error     unix  -       -       n       -       -       error
retry     unix  -       -       n       -       -       error
discard   unix  -       -       n       -       -       discard
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       n       -       -       lmtp
anvil     unix  -       -       n       -       1       anvil
scache    unix  -       -       n       -       1       scache
myhook unix - n n - - pipe
   flags=Rq user=admin argv=/var/tmp/filter.pl ${sender} ${recipient}

答案1

根据上面的输出master.cf,我们知道 postfix 会将原始发件人传递到脚本的第一个参数中。因此,脚本必须解析参数,将其保存到变量中,并在电子邮件通过 sendmail 命令重新注入到 postfix 时使用它来提供发件人地址。

Sendmail 命令通过 -f 参数接受发件人参数。因此您的脚本必须调用sendmail -f $origsender ...other parameter

参考: http://www.postfix.org/FILTER_README.html#simple_filter

相关内容