Search found 1 match

by Elzar
Sun Sep 18, 2016 10:44 pm
Forum: Support
Topic: blacklist .top .pro
Replies: 4
Views: 13013

Re: blacklist .top .pro

You could create a sieve script to discard any email from those TLDs? Something like this should do the trick: # Discard email from specified TLDs if header :contains ["from"] ["*.top","*.pro"] { discard; } If you're not comfortable with sieve scripts then you can prob...