andyh_
Giga Contributor

In order to have a more flexible filter, you will probably need to add custom script that returns true or false based on some regex.



For your ASIA domain example:



var re = /asia$/i; // matches 'asia' at the end of string, case insensitive


return !re.match(email.origemail); // return false if email address matches