
For accept_these_nonmembers I would like to add my entire domain. So
I added "^@my.domain.com" w/out the quotes, but that doesn't seem to
be working. Any suggestions for my wrong syntax?
Thanks -Troy

Troy Knabe wrote:
For accept_these_nonmembers I would like to add my entire domain. So
I added "^@my.domain.com" w/out the quotes, but that doesn't seem to
be working. Any suggestions for my wrong syntax?
Try ^[^@]+@my.domain.com$
See <http://docs.python.org/lib/re-syntax.html>
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan

Mark Sapiro wrote:
Try ^[^@]+@my.domain.com$
To be really correct, that should be ^[^@]+@my\.domain\.com$
^[^@]+@my.domain.com$ would allow for example user@myxdomain.com
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan

Mark Sapiro, on 1/8/2008 1:18 PM, said the following:
Troy Knabe wrote:
For accept_these_nonmembers I would like to add my entire domain. So
I added "^@my.domain.com" w/out the quotes, but that doesn't seem to
be working. Any suggestions for my wrong syntax?Try ^[^@]+@my.domain.com$
But doing this you lose the benefit of recipient validation - meaning, spam sent 'Fm:' an invalid address in your domain will be allowed through... or am I missing something?
--
Best regards,
Charles
participants (3)
-
Charles Marcus
-
Mark Sapiro
-
Troy Knabe