Re: [exim] Simple filter to copy a single users incoming and…

Top Page
Delete this message
Reply to this message
Author: Rob
Date:  
To: exim-users
Subject: Re: [exim] Simple filter to copy a single users incoming and outgoing mail?
Rob wrote:
> Hi,
>
> I have the unfortunate task of setting up a filter to monitor a single
> users incoming and outgoing mail. If it were just incoming mail I would
> use the system aliases to deliver a copy to another account, but I need
> to get the outgoing mail as well. I am thinking that a system filter
> might be the right way to go about this, such as:
>
> # Exim filter
> if
>     $sender_address contains user@???
> then
>     unseen deliver mailcop@???
> if
>     $recipients contains user@???
> then
>     unseen deliver mailcop@???
> endif

>
> My syntax may be wrong above ^^
>
> I am sure someone else has had to do this, thanks for the help.
>


Any help on setting something like this up? I dont want to re-invent
the wheel.