View Single Post
Old 29 Sep 2018, 02:49 PM   #2
n5bb
Intergalactic Postmaster
 
Join Date: May 2004
Location: Irving, Texas
Posts: 8,929
You can do this using:
  • If all of the following conditions apply:
  • The sender's email ends with (domain)
  • The sender's email does not match glob pattern (address)
  • Send a copy to (address)
This rule creates sieve code similar to:
Code:
if 
   allof(
   address :matches "From" "*example.org",
   not address :matches "From" "ignore@example.org"
   )
 {
   redirect :copy "jcitizen@fastmail.fm";
  }
Bill
n5bb is online now   Reply With Quote