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

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Ted Cooper
Ημερομηνία:  
Προς: exim-users
Αντικείμενο: Re: [exim] Simple filter to copy a single users incoming and outgoing mail?
Oops.. stuffed up the brackets..

# Exim filter

# don't want to get multiple copies
if first_delivery
and (("$h_to:, $h_cc:" contains "user@???")
or ("$h_from:" contains "user@???"))
then
unseen deliver "store@???"
endif

Ted.