Re: [Exim] forward mails in subfolder (maildirs)

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: David Woodhouse
Fecha:  
A: Steve Haslam
Cc: exim-users
Asunto: 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.

--
dwmw2