View Single Post
Old 2 Apr 2020, 01:45 PM   #25
gardenweed
Cornerstone of the Community
 
Join Date: Jun 2008
Location: Perth
Posts: 664
@xyzzy

Very much like the 1st example

Sieve used to look like:
Code:
if anyof(
 header :contains "subject" "some repeating subject",
 header :contains "from" "@abcd.com.au",
 header :contains "from" "efgh.com.au",
 header :contains "from" "@stufflinfo.com",
 ....
 header :contains "from" "news@somepub.com"
 ) {
   fileinto "INBOX.Subscriptions";
  stop;
  }
Fairly neat & tidy.
Just one block of conditions for all
gardenweed is offline   Reply With Quote