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
-

@mydomain.com. Or@mydomain.com>. – Mark Nov 5 at 8:46