jimsheffer wrote: > Hi everyone. > > I've just set up a new mail server running the latest version of > spamassassin. > > I'm getting ready to add some extra rules, and RDJ. > I ran lint -D on the basic config file I have for sa to see what I get > before adding a bunch of rule files, and got the following errors: (I > believe these are 2 of the 3- the other was razor I think- snipped out all > the other stuff for briefness, but have it all if needed :) > > Can someone help me out to decifer what they meanand what I need to do > before proceeding with other rules? > > Thanks! > > config: SpamAssassin failed to parse line, skipping: rewrite_subject 0 > config: SpamAssassin failed to parse line, skipping: always_add_headers 1 > config: SpamAssassin failed to parse line, skipping: auto_learn
auto_learn was changed to bayes_auto_learn in SA 2.60. always_add_headers is redundant with the report templates, and has been dead for a long time. Just delete it. rewrite_subject has been replaced with rewrite_header as of SA 3.0. To get the same effect as rewrite_subject 0 use: rewrite_header subject Which specifies no modification of the subject line (otherwise a tag string would follow).