RE: [exim] Monitoring sent emails of a user

Pàgina inicial
Delete this message
Reply to this message
Autor: Sub Zero
Data:  
A: 'Exim Users'
Assumpte: RE: [exim] Monitoring sent emails of a user
Hi Santi

>> My boss today asked me to mirror a newcomers all sent emails to his
>> mailbox.
>> How do I do this in exim 4.52?
>
> Hi :)
>
> Try with this:
>
> $ cat /etc/.filter
> unseen deliver boss@???


I have created a system filter like this:

if ($sender_address MATCHES newuser@???) then
    unseen deliver watcher@???
endif


and it is working okay. But I want to remove the header line
"Return-Receipt-To: ..." only in this "unseen delivery" filter (if you call
this a filter).

Is this possible?