I currently am using this setting

"report_safe 0"  attached is my local.cf file

-----Original Message-----
From: Dave Kliczbor [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 15, 2003 11:04 AM
To: Philip Bubel
Subject: Re: [SAtalk] Tagged Mail Format Problem

Philip Bubel wrote:
>     Having a problem with mail that is tagged as spam.  SA is placing 
> a large block of text (see below) at the start of all messages tagged as
spam.

The answer is probably
  report_safe 0

Copy&paste from "perldoc Mail::SpamAssassin::Conf":
       report_safe { 0 | 1 | 2 }     (default: 1)
           if this option is set to 1, if an incoming message is
           tagged as spam, instead of modifying the original mes-
           sage, SpamAssassin will create a new report message
           and attach the original message as a message/rfc822
           MIME part (ensuring the original message is completely
           preserved, not easily opened, and easier to recover).

           If this option is set to 2, then original messages
           will be attached with a content type of text/plain
           instead of message/rfc822.  This setting may be
           required for safety reasons on certain broken mail
           clients that automatically load attachments without
           any action by the user.  This setting may also make it
           somewhat more difficult to extract or view the origi-
           nal message.

           If this option is set to 0, incoming spam is only mod-
           ified by adding some headers and no changes will be
           made to the body.

To not mangle the subject...
  rewrite_subject 0

...but to let local rules in the mailprogram do some sorting:
  always_add_headers 1
  spam_level_stars 1

All configurations should be done in your local.cf, to be found maybe in
/etc/spamassassin or elsewhere, depending on your linux distribution and
spamassassin installation.

You probably should have read the documentation more carefully.

cu
 Dave KLiczbor


# SpamAssassin config file for version 2.5x
# generated by http://www.yrex.com/spam/spamconfig.php (version 1.01)

# How many hits before a message is considered spam.
required_hits           5.0

# Whether to change the subject of suspected spam
rewrite_subject        1

# Text to prepend to subject if rewrite_subject is used
subject_tag             *****SPAM*****

# Encapsulate spam in an attachment
report_safe             0

# Use terse version of the spam report
use_terse_report        1

# Enable the Bayes system
use_bayes               1

# Enable Bayes auto-learning
auto_learn              1

# Enable or disable network checks
skip_rbl_checks         0
use_razor2              1
use_dcc                 1
use_pyzor               1

# Mail using languages used in these country codes will not be marked
# as being possibly spam in a foreign language.
ok_languages            all

# Mail using locales used in these country codes will not be marked
# as being possibly spam in a foreign language.
ok_locales              all

Reply via email to