From Gary:
> > Hate to do it, but I will speak for Al here. In the SA users list Al
> > mentioned that he would like $sa_spam_report_header in non-spam
> > messages also.

Spam report header is inserted above tag2 level, so keeping this
value low would label all messages as spam and add the report.
Keeping also $sa_spam_subject_tag at undef would probably make
this tolerable for a short while.

Moving append_header('X-Spam-Report'...) out of the 'if'
clause would probably do just what Al expects:

      if ($do_tag2) {
        $hdr_edits->append_header('X-Spam-Flag', 'YES');
        $hdr_edits->append_header('X-Spam-Report', $spam_report,1)
          if $spam_report ne '' && c('sa_spam_report_header');
      }
-->
      if ($do_tag2) {
        $hdr_edits->append_header('X-Spam-Flag', 'YES');
      }
      $hdr_edits->append_header('X-Spam-Report', $spam_report,1)
        if $spam_report ne '' && c('sa_spam_report_header');


> At the moment I try to find out if the defang-variables can help me.
...
> As far as I understand it, I should get a mail, if the score is between 4,5
> and 6.31, but I don't know to which address the mail is sent.

Defanged mail goes to the original mail recipient.

  Mark


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
_______________________________________________
AMaViS-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/amavis-user
AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/howto/

Reply via email to