boxtrapper : lists format: regex?

troutwa

Registered
Jul 3, 2008
1
0
51
Did you ever get the answer to this?

Hi,

I was wondering if you ever got the answer to this?

I've been looking around and the closest I found was your post. I even experimented with a couple of notations with out much luck.

What I'm looking for is to whitelist all emails coming from a domain. For example all emails from ebay.com...

Thanks

Diego
 

IDontExist

Member
Aug 5, 2008
6
0
51
I think the actual notation to use would be:

from \.jp$

the $ (for matching the *end*) ensures that something like [email protected] wouldn't match

similarly, to whitelist everything from ebay.com (which I would advise against since I've found lots of phishing emails use this domain), use this:

from \@ebay\.com

***note - these are both untested, but are similar to regexes that I use - probably not a good idea to use in a production environment without testing first***