> -----Original Message-----
> From: Kelsey Cummings [mailto:[EMAIL PROTECTED]
> Sent: Friday, May 07, 2004 12:34 PM
>
> David, are there any circumstances when MD will not write out 
> a HEADERS
> file?  I've got mail passing through the system that my code in
> filter_begin doesn't seem to see.
> 
> ...
>    if ( open(HEADER, "<HEADERS") )
>    {
>         while(<HEADER>)
>         {
>                 next unless /^(To|From|Cc):/;
> 

To, From, and Cc are not case sensitive.
to: email at example.com
TO: email at example.com
are both valid.

Try:
                 next unless /^(To|From|Cc):/i;
_______________________________________________
Visit http://www.mimedefang.org and http://www.canit.ca
MIMEDefang mailing list
[EMAIL PROTECTED]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to