vote up 2 vote down star

I need a Perl-compatible regular expression for filtering my email with smtp-gated. I only want to allow one domain ('mydomain.com') and reject everything else. How do I do this in a foolproof way? (regex_reject_mail_from)

I know this question halfway belongs on serverfault, but basically it's a Perl regex question so I think it fits stackoverflow more.

EDIT:

This should match so I can reject it:

"Someone" <someone@somedomain.com>

This should not match:

"Me" <me@mydomain.com>

This shouldn't match also:

you@mydomain.com

-

flag

What does your input string look like? Please provide sample data the should match, and ideally something that should not match as well. – daotoad Nov 5 at 7:41
2  
I don't get it. Why do you even need a regex? Just check if the string ends with @mydomain.com. Or @mydomain.com>. – Mark Nov 5 at 8:46
1  
Have a look at the guide to validating e-mail adresses @ regular-expressions.info regular-expressions.info/email.html – Huppie Nov 5 at 8:51

3 Answers

vote up 3 vote down check

I'd suggest the following:

\b[A-Z0-9._%+-]+@(?!mydomain\.com)[A-Z0-9.-]+\.[A-Z]{2,6}\b

Use the /i option to make it case-insensitive.

This will match most valid (and some invalid) e-mail addresses that don't have mydomain.com after the @. Keep in mind that e-mail validation is hard with regexes.

link|flag
1  
Shouldn't it be mydomain\.com? – Amarghosh Nov 5 at 8:44
whats the rational behind {2,6}? Are sub-domain names limited to 6 chars? – Amarghosh Nov 5 at 8:48
Oops, thanks for the correction. As for 6 chars, the longest TLD in use today is .museum - you could drop the 6, but that's not the only problem you'll run into if you try to validate e-mail addresses by regex. – Tim Pietzcker Nov 5 at 9:20
Yeah, I know. I've heard about that one and only 5k char long regex :) – Amarghosh Nov 5 at 9:46
vote up 2 vote down

If your regex is going to be applied to the MAIL FROM line in the MTA communication then you do not need to concern yourself with the full 'email address' specification. MAIL FROM lines are just the email address enclosed in '<>', so any regex that tests for @mydomain.com> should work.

link|flag
vote up 1 vote down
\b(?:"[ a-zA-Z]+")?\s*<?[a-zA-Z0-9_.]@(?!mydomain\.com)\w+(?:\.\w{2,})+>?\b

UPDATE: Note that this regex is fa{9,}r from being perfect. Check the official regex for email addresses for more info (Scroll down to the <p/> titled RFC 2822).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.