Len Conrad wrote: > > What the standard regexp looks for is on one line: > > Content-Type: application/octet-stream; name="spam-stats_040129_2258.zip" > > but what I'm seeing is: > > Content-Type: application/octet-stream; > name="spam-stats_040129_2258.zip" > > so the filter doesn't catch it.
Try /m at the end to do a mulitline search. e.g. /[REGEXP]/m REJECT -- Chris Scott Host Orlando, Inc. http://www.hostorlando.com/
