[Mailman-Users] OT - Regex help (was: Re: About Spam Filtering

Stephen J. Turnbull stephen at xemacs.org
Fri Feb 15 17:34:22 CET 2013


Like Joseph, I don't know what /.*+/ does, but this

$ echo 'From bounce' | perl -ane 'print if /From.*bounce/;'
>From bounce
$ echo 'From bounce' | perl -ane 'print if /From.*+bounce/;'
$ 

shows what it doesn't do.



More information about the Mailman-Users mailing list