Hi guys,
I have been asked to setup a filter in exim that will redirect an email to [email protected] to [email protected], where the subject line has the phrase [auto] in it. Except when the subject line has RE: or FW: in it.

I setup the following:
 # Exim filter
if
$h_to is "[email protected]" and $h_subject contains "[auto]"
and $h_subject does not contain "RE:" and does not contain "FW:"
then
deliver [email protected]
endif

The problem with this is that if anyone else is CC'd into the email then they do not get the email as i get

original recipients ignored (system filter)

and if group1 is cc'd into the email then the filter does not apply.

Can someone help me?

TJ

--
## List details at https://lists.exim.org/mailman/listinfo/exim-users
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/

Reply via email to