I would like to use an Exim filter file to create a newsletter: accepting mail from specified contributor addresses, then forwarding on to specified subscriber addresses. The below works, but is there a more elegant and robust approach?
# 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