[Mailman-Users] Expressions to reduce spam

Larry Kuenning larry at qhpress.org
Sun Nov 13 18:57:58 EST 2016


On 11/13/2016 5:17 PM, Cyndi Norwitz wrote:

> My latest failure is: ^[^@]+@(.*\.)*\.top$

It looks like what fails here is that the expression requires two dots 
before "top":  someone at something..top would be caught but not 
someone at something.top.  So try this:

^[^@]+@(.*\.)*top$

Or probably better:

^[^@]+@[^@]+\.top$

-- 
Larry Kuenning
larry at qhpress.org



More information about the Mailman-Users mailing list