Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2016 09:57 AM
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