Re: Sieve by the addressee

2021-02-20 Thread @lbutlr
> On 20 Feb 2021, at 11:02, Shawn Heisey wrote: > > On 2/20/2021 8:50 AM, Markus Schönhaber wrote: >> I consider it a better idea to filter mailing list messages by their >> List-ID header. > > I agree with Markus. It's what I do. This works well: > > if header :regex "list-id"

Re: Sieve by the addressee

2021-02-20 Thread Darac Marjal
On 20/02/2021 18:02, Shawn Heisey wrote: > On 2/20/2021 8:50 AM, Markus Schönhaber wrote: >> I consider it a better idea to filter mailing list messages by their >> List-ID header. > > I agree with Markus.  It's what I do.  This works well: > > if header :regex "list-id"

Re: Sieve by the addressee

2021-02-20 Thread Bernd Petrovitsch
Hi all! On 20/02/2021 19:02, Shawn Heisey wrote: > On 2/20/2021 8:50 AM, Markus Schönhaber wrote: >> I consider it a better idea to filter mailing list messages by their >> List-ID header. > > I agree with Markus.  It's what I do.  This works well: > > if header :regex "list-id"

Re: Sieve by the addressee

2021-02-20 Thread Shawn Heisey
On 2/20/2021 8:50 AM, Markus Schönhaber wrote: I consider it a better idea to filter mailing list messages by their List-ID header. I agree with Markus. It's what I do. This works well: if header :regex "list-id" "solr-user.lucene.apache.org" { fileinto "asf.solr-user";

Re: Sieve by the addressee

2021-02-20 Thread Markus Schönhaber
20.02.21, 15:44 +0100, m...@shadrinden.ru: > I have a sieve that is supposed to put all messages addressed to this mailing > list into a separate folder: > > if anyof (address :is "to" "m...@shadrinden.ru", > address :is "to" "dovecot@dovecot.org") { > fileinto "mail_list"; >

Sieve by the addressee

2021-02-20 Thread ml
Hi, everyone! I have a sieve that is supposed to put all messages addressed to this mailing list into a separate folder: if anyof (address :is "to" "m...@shadrinden.ru", address :is "to" "dovecot@dovecot.org") { fileinto "mail_list"; stop; } Generally, it's working, but today I