procmail
[Top] [All Lists]

Re: Add a string to "From" field

1998-11-16 20:40:53
At 06:24 PM 11/16/98 -0500, Stan Ryckman (silly me) wrote:
Using this condition instead:
      * ^From: *\/.*
should avoid any leading blank(s) in MATCH, I think.

Ugh!  Should have tested the thing.  \/ is greedy!  (That means it sucks
up all the blanks to its left here.)  Instead use:
        * ^From: *\/[^ ].*

Cheers,
Stan

<Prev in Thread] Current Thread [Next in Thread>