procmail
[Top] [All Lists]

Re: regex's

2002-04-18 07:23:59
On Thu, 18 Apr 2002, Otto wrote:

Hello, I would like to know how to write this regex correctly: (it seem to
catch all email, doh)

* ^Received:* *from*

        from* means:  "fro" or "from" or "frommmm"

        Maybe you want:
* ^Received: *from

        Or:
* ^Received:[   ]*from

        Whene [         ]  is:  "["  "SPACE"  "TAB"  "]"


.*[mardox.com|urlomatic.com|db-hosting.com|bannerscape.com]

        ???:

* (mardox.com|urlomatic.com|db-hosting.com|bannerscape.com)


        Play with egrep(1) from command line to get experience AND
        PLEASE RTFM!!

Bye,
 Udi

_______________________________________________
procmail mailing list
procmail(_at_)lists(_dot_)RWTH-Aachen(_dot_)DE
http://MailMan.RWTH-Aachen.DE/mailman/listinfo/procmail

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