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

トップ ページ
このメッセージを削除
このメッセージに返信
著者: David Woodhouse
日付:  
To: Steve Haslam
CC: exim-users
題目: 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