Tim Legant <[EMAIL PROTECTED]> writes: Replying to myself...
> headers '^To:.*(?:\n[ \t]+.*)?(?:tim|thl)(?:-.*?)[EMAIL PROTECTED]' confirm -------------------------------^ This only matches addresses on the first or second line of the To: field. Change that to '*' to match on any number of To: lines, like this: headers '^To:.*(?:\n[ \t]+.*)*(?:tim|thl)(?:-.*?)[EMAIL PROTECTED]' confirm -----------------------------^ Tim _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
