Dear Hans

> I am looking for a possibility to filter for an existing header line. 
> I found a lot of examples where $Subject, $Sender and others can be
> used. But I need the possibility to find a certain header line, for
> example  X-Someinfo: Can someone point me to some examples. 
> I was searching at Google but obviously with the wrong keywords. 

I fear you have to do this the hard way by reading the HEADERS file
from the spool directory:

in filter_end, because this is the place where you get the content...

if (open(HDRCHECK, "<./HEADERS")) {
        while(<HDRCHECK>) {
                if ($_ =~ /^X-Someinfo:[\t ]+(.*?)/ {
                        $SomeinfoValue = $1;
                }
        }
}

-BenoƮt Panizzon-
-- 
I m p r o W a r e   A G    -    Leiter Commerce Kunden
______________________________________________________

Zurlindenstrasse 29             Tel  +41 61 826 93 00
CH-4133 Pratteln                Fax  +41 61 826 93 01
Schweiz                         Web  http://www.imp.ch
______________________________________________________

_______________________________________________
NOTE: If there is a disclaimer or other legal boilerplate in the above
message, it is NULL AND VOID.  You may ignore it.

Visit http://www.mimedefang.org and http://www.roaringpenguin.com
MIMEDefang mailing list [email protected]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to