Autor: David Woodhouse Datum: To: Steve Haslam CC: exim-users Betreff: Re: [Exim] forward mails in subfolder (maildirs)
steve@??? said: > if $h_List-Id: contains "<exim-users.exim.org>"
> then
> save $home/Mail/exim-users
> endif
You get false positives that way. Better to use
if $sender_address: contains "exim-users-admin@???"
Admittedly, the failure cases for filtering on List-Id are far fewer than in
the really idiotic cases of filtering on the noise added to the Subject
header by some misguided mail list admins or filtering on To/Cc addresses,
but it still happens.