> -----Original Message-----
> From: marc jackson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, January 22, 2004 10:35 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [SAtalk] Spamassassin doesn't appear to be running...?
>
>
> your mta should call spamc which would then interact with the spamassassin
> daemon, called spamd.
>
> What does your set up look like?
>
> Marc
>
> ps. re: replying. We gotta help each other out or we'll be forced to pay
> for support with $$ we don't have. :)
>
>
Hmmmmmmm, when I look at the Qmail configuration in Webmin I see no
reference (nor a place for it) to spamc. I don't even see a reference to
spamassassin. When I look at the qmail action in the bootup process, this
is the entire script:
#! /bin/sh
#
# This is /etc/rc.d/init.d file for Q-Mail
#
# chkconfig: 345 80 30
# description: qmail Mail Transfer Agent
# processname: qmail-send
#
#
# Source networking configuration.
if [ ! -f /etc/sysconfig/network ]; then
exit 0
fi
# Source function library.
. /etc/rc.d/init.d/functions
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
myname=qmail
qmail_dir=/var/qmail
subsys=/var/lock/subsys/$myname
PATH="$qmail_dir/bin:$PATH"
export PATH
proccess=qmail-send
start()
{
qmail-start ./Maildir/ splogger qmail &
sleep 1
[ "`pidofproc $proccess`" ]
ret=$?
if [ $ret -eq 0 ]; then
action $"Starting $myname: " /bin/true
else
action $"Starting $myname: " /bin/false
fi
[ $ret -eq 0 ] && touch $subsys
return $ret
}
check_and_start()
{
if [ ! -f $subsys ]; then
start
fi
}
stop()
{
if [ -f $subsys ]; then
echo -n $"Stopping $prog: "
killproc $proccess
ret=$?
[ $ret -eq 0 ] && rm -f $subsys
return $ret
else
killall $proccess > /dev/null 2>&1
true
fi
}
restart(){
stop
start
}
condrestart(){
[ -e $subsys ] && restart || true
}
#reload(){
# [ -e /var/lock/subsys/$myname ] && mysqladmin reload
#}
# See how we were called.
case "$1" in
start)
start
;;
condstart)
check_and_start
;;
stop)
stop
;;
status)
status $proccess
;;
reload)
restart
# reload
;;
restart)
restart
;;
condrestart)
condrestart
;;
*)
echo $"Usage: $0 {start|stop|status|reload|condrestart|restart}"
exit 1
esac
exit $?
> > > >Please excuse me if this is obvious, but I have tried to RTFM and I
can't
> > > >figure out why I'm still seeing no SA info in my headers (no
indication that
> > > >SA is doing anything). My ISP installed SA 2.60 on a RedHat 7.0 box.
Using
> > > >Webmin, I can see the module installed and I see Spamassassin in the
bootup
> > > >list (and it IS showing as "Started").
> > > >
> > > >Under running processes I see:
> > > >/usr/bin/spamd -d -c -a -m5 -H
> > > >
> > > >My SA module has the following info:
> > > >SA config file: /etc/mail/spamassassin/local.cf
> > > >Full path to SA: /usr/bin/spamassassin
> > > >Procmail config file: /etc/procmailrc
> > > >SA daemon process: spamd amavisd
> > > >
> > > >Procmail has these two entries:
> > > >Feed to program: /usr/bin/spamc
> > > >Append to file: spam
> > > > Matches regular expression: ^X-Spam-Status: Yes
> > > >
> > > >I don't understand what I'm missing, or why I'm not seeing any
> > > SA info in
> > > >my
> > > >headers. Can anyone help me figure out what else I could be missing??
> > > >
-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk