--On Friday, April 09, 2004 03:21:09 PM -0500 Jim McCullars <[EMAIL PROTECTED]> wrote:

   There's not a built-in way to do this, you have to read the HEADERS
file, something like this in filter_end() before calling SpamAssassin:

  if(open(HDRS, "./HEADERS")) {
    while(<HDRS>) {
      if(m/^X-BeenThere:/) {
        close(HDRS);
        return
      }
    }
    close(HDRS);
  }


Thanks Jim. This is what I needed.


Alex

_______________________________________________
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