Check out my new sieve email blocking program

here is the my code to domainblock+ you can add domains and addresses by putting a comma and putting the entry in quotes like this: [“testaddy1.com”,“testaddy2.com”]
idk if it will work for mainstream email providers but, I know it works for mail-servers and ProtonMail and other encrypted email clients.

#this I made myself. This sieve script blocks entire domains from sending emails.
require “reject”;
if address :domain “from” [“peta.org”,“email.allrecipes.com”,“surveymonkeyuser.com”,“arvixe.com”,“mail.foodandwine.com”,“blazinggrace.org”,“treehugger.com”,“survivalsullivan.com”,“mail.directactioneverywhere.com”]
{
discard;}
#this section is used to blacklist specific addresses to avoid blocking legit emails.
if address :all “from” [“[email protected]”]
{reject “your address is blacklisted.”;}
else {keep;}