【发布时间】:2017-05-03 19:34:47
【问题描述】:
我想使用 Exim 过滤器文件来创建简报:接受来自指定投稿人地址的邮件,然后转发到指定订阅者地址。以下方法可行,但是否有更优雅、更强大的方法?
# Exim filter
if
$reply_address contains "eric@i.com" or
$reply_address contains "graham@c.com"
then
seen
deliver john@c.com
deliver michael@p.com
deliver terry@gj.com
endif
【问题讨论】:
标签: exim