Current problem: Messages are not being tagged/proceessed by SpamAssassin What is working: qmail-scanner is processing messages clamscan is reviewing them. perlscan is stopping messages as it should. Spamd is running and Q-S knows it's there. What I want: To dump all mail into an Archive account and all Spam in a Spam account but until SpamAssassin is tagging the messages I can't do that.
Question: What do I need to do to get this working? I have included the following details: Linux version 2.4.9-34 Red Hat Linux 7.2 2.96-108.1 qmail-1.03 (With DNS and QMAILQUEUE patches) qmail-scanner-1.14 clamav-0.50 tnef-1.1.2 spamassassin-2.42-3 maildrop-1.4.0. vpopmail-5.2.1 (With Seekable diff applied) vqadmin-1.6 Perl 5.6.1 Time-HiRes-1.37 Net-DNS-0.29 HTML-Parser-3.26 /var/log/messages (on boot up) Oct 9 08:49:17 qmail1 spamd: perl: warning: Setting locale failed. Oct 9 08:49:17 qmail1 spamd: perl: warning: Please check that your locale settings: Oct 9 08:49:17 qmail1 spamd: ^ILANGUAGE = (unset), Oct 9 08:49:17 qmail1 spamd: ^ILC_ALL = (unset), Oct 9 08:49:17 qmail1 spamd: ^ILANG = "en_US" Oct 9 08:49:17 qmail1 spamd: are supported and installed on your system. Oct 9 08:49:17 qmail1 spamd: perl: warning: Falling back to the standard locale ("C"). Oct 9 08:49:19 qmail1 spamd: The -F option has been removed Oct 9 08:49:19 qmail1 spamassassin: spamd startup succeeded /etc/init.d/spamassassin #!/bin/sh # # spamassassin This script starts and stops the spamd daemon # # chkconfig: 2345 80 30 # # description: spamd is a daemon process which uses SpamAssassin to check # email messages for SPAM. It is normally called by spamc # from a MDA. # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 [ -f /usr/bin/spamd -o -f /usr/local/bin/spamd ] || exit 0 PATH=$PATH:/usr/bin:/usr/local/bin # See how we were called. case "$1" in start) # Start daemon. echo -n "Starting spamd: " daemon spamd -d -v -u vpopmail -F 0 # replaced line below with line above (j.o.) #daemon spamd -d -c -a RETVAL=$? touch /var/lock/spamd echo ;; stop) # Stop daemons. echo -n "Shutting down spamd: " killproc spamd RETVAL=$? rm -f /var/lock/spamd echo ;; restart) $0 stop $0 start ;; status) status spamd ;; *) echo "Usage: $0 {start|stop|restart|status}" exit 1 esac exit 0 /etc/mail/spamassassin/local.cf # This is the right place to customize your installation of SpamAssassin. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be # tweaked. # ########################################################################### # skip_rbl_checks 0 required_hits 5.0 auto_report_threshold 30 rewrite_subject 0 report_header 1 defang_mime 1 use_terse_report 1 spam_level_stars 1 /service/qmail-smtpd/run #!/bin/bash QMAILDUID=`id -u qmaild` NOFILESGID=`id -g qmaild` MAXSMTPD=`cat /var/qmail/control/concurrencyincoming` QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl" exec /usr/local/bin/softlimit -m 31000000 \ /usr/local/bin/tcpserver -v -R -l 0 -x /etc/tcp.smtp.cdb -c "$MAXSMTPD" \ -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp /var/qmail/bin/qmail-smtpd 2>&1 /etc/tcp.smtp 127.:allow,RELAYCLIENT="" 56.0.0.:allow,RELAYCLIENT="",QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl" ..:allow,RELAYCLIENT="",QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl" ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Spamassassin-talk mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/spamassassin-talk