On 10/20/2011 4:07 AM, Ian Masters wrote: >> That's wrong syntax... >> >> /name=*\.*/ REJECT no attachments allowed >> >> means: >> >> "name" followed by an arbitrary number of "=" >> followed by an arbitrary number of "." >> >> You probably meant: >> >> /name=/ REJECT no attachments allowed > > Thanks for pointing that out. I wonder why it worked ...
It matches "name" followed by zero or more "=", followed by zero or more ".". So it matches the same as /name/ -- Noel Jones