View Single Post
Old 29 Sep 2018, 04:30 PM   #3
anotherJeremy
Essential Contributor
 
Join Date: Aug 2004
Location: Japan
Posts: 226
Thank you.

Thank you, Bill. This was just what I needed.

Jeremy

Quote:
Originally Posted by n5bb View Post
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
anotherJeremy is offline   Reply With Quote