I have been trying to get clamav-milter to work on Linux FC 8:

Linux smtp 2.6.26.6-49.fc8 #1 SMP Fri Oct 17 15:33:32 EDT 2008 x86_64 x86_64 
x86_64 GNU/Linux
Fedora release 8 (Werewolf)


I downloaded the latest source and built. freshclam is working, it looks like I 
am able to run the clamav daemon, but for some reason my clamav-milter is NOT 
starting... and given all the changes I don't know if I am doing this right:

sendmail.mc:

....
dnl # SPAM FILTERS
INPUT_MAIL_FILTER(`spamassassin',`S=local:/var/run/spamass-milter/spamass-milter.sock,
 F=, T=C:15m;S:4m;R:4m;E:10m')dnl
INPUT_MAIL_FILTER(`clmilter', `S=local:/var/run/clamd/clamav-milter.socket, F=, 
T=S:4m;R:4m')dnl
define(`confINPUT_MAIL_FILTERS', `clmilter,spamassassin')dnl
....


/usr/local/etc/clamav-milter.conf 

...

MilterSocket /var/run/clamd/clamav-milter.socket
User clamav 
PidFile /var/run/clamd/clamav-milter.pid

LogTime yes
LogSyslog yes
LogFacility LOG_LOCAL6

....







Here is my startup script which I updated to run the clamd then launch clamav 
(log follows). No matter what I do, clam-miter does not seem to be running? Any 
ideas?




[r...@smtp log]# more /etc/init.d/clamav-milter 
#!/bin/sh
#
# clamav-milter This script starts and stops the clamav-milter daemon
#
# chkconfig: - 79 40
#
# description: clamav-milter is a daemon which hooks into sendmail and routes \
#              email messages for virus scanning with ClamAV
# processname: clamav-milter
# pidfile: /var/lock/subsys/clamav-milter

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Local clamav-milter config
CLAMAV_FLAGS=
test -f /etc/sysconfig/clamav-milter && . /etc/sysconfig/clamav-milter

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

PATH=$PATH:/usr/bin:/usr/local/sbin:/usr/local/bin

RETVAL=0

start() {

    # ADD BY SHAWN 04122010 for new ClamAV implementation 
    echo -n "Starting clam AV Server: "
    touch /var/lock/subsys/clamd

    if [ -x /sbin/restorecon ] ; then
        /sbin/restorecon /var/lock/subsys/clamd
    fi

        LANG= daemon clamd ${CLAMD_FLAGS}
        RETVAL=$?
        echo
        test $RETVAL -eq 0
        return $RETVAL


        echo -n "Starting clamav-milter: "
    # Don't allow files larger than 20M to be created, to limit DoS
    # Needs to be large enough to extract the signature files
    ulimit -f 20000
    touch /var/lock/subsys/clamav-milter
# SE Linux Fix from http://webui.sourcelabs.com/fedora/issues/447247 (and in 
spamass-miter)

    if [ -x /sbin/restorecon ] ; then 
        /sbin/restorecon /var/lock/subsys/clamav-milter
    fi
# removed as we log to syslog now
    #if [ -x /sbin/restorecon ] ; then 
#        /sbin/restorecon /var/log/clamd.milter
#    fi
     
    LANG= daemon clamav-milter ${CLAMAV_FLAGS}
        RETVAL=$?
        echo
    test $RETVAL -eq 0
    return $RETVAL
}

stop() {

    echo -n "Shuttung down clamd: "
    killproc clamd
        RETVAL=$?
        echo
        test $RETVAL -eq 0 && rm -f /var/lock/subsys/clamd


        echo -n "Shutting down clamav-milter: "
        killproc clamav-milter
        RETVAL=$?
        echo
    test $RETVAL -eq 0 && rm -f /var/lock/subsys/clamav-milter
}

restart() {
    stop
    start
}

# See how we were called.
case "$1" in
  start)
        # Start daemon.
    start
        ;;
  stop)
        # Stop daemon.
    stop
        ;;
  restart|reload)
    restart
        ;;
  condrestart)
    test -f /var/lock/subsys/clamav-milter && restart || :
        ;;
  status)
        status clamav-milter
        status clamd
        ;;
  *)
        echo "Usage: $0 {start|stop|reload|restart|condrestart|status}"
        exit 1
esac

exit $?





















/var/log/clamav.log 

May 11 11:55:20 smtp clamd[31928]: Pid file removed.
May 11 11:55:20 smtp clamd[31928]: --- Stopped at Tue May 11 11:55:20 2010
May 11 11:55:20 smtp clamd[31928]: Socket file removed.
May 11 11:55:23 smtp clamd[32161]: clamd daemon 0.96 (OS: linux-gnu, ARCH: 
x86_64, CPU: x86_64)
May 11 11:55:23 smtp clamd[32161]: Running as user clamav (UID 497, GID 496)
May 11 11:55:23 smtp clamd[32161]: Log file size limited to 1048576 bytes.
May 11 11:55:23 smtp clamd[32161]: Reading databases from 
/usr/local/share/clamav
May 11 11:55:23 smtp clamd[32161]: Not loading PUA signatures.
May 11 11:55:27 smtp clamd[32161]: Loaded 767740 signatures.
May 11 11:55:27 smtp clamd[32161]: LOCAL: Unix socket file 
/var/run/clamd/clamd.socket
May 11 11:55:27 smtp clamd[32161]: LOCAL: Setting connection queue length to 15
May 11 11:55:27 smtp clamd[32162]: Limits: Global size limit set to 104857600 
bytes.
May 11 11:55:27 smtp clamd[32162]: Limits: File size limit set to 26214400 
bytes.
May 11 11:55:27 smtp clamd[32162]: Limits: Recursion level limit set to 16.
May 11 11:55:27 smtp clamd[32162]: Limits: Files limit set to 10000.
May 11 11:55:27 smtp clamd[32162]: Archive support enabled.
May 11 11:55:27 smtp clamd[32162]: Algorithmic detection enabled.
May 11 11:55:27 smtp clamd[32162]: Portable Executable support enabled.
May 11 11:55:27 smtp clamd[32162]: ELF support enabled.
May 11 11:55:27 smtp clamd[32162]: Mail files support enabled.
May 11 11:55:27 smtp clamd[32162]: OLE2 support enabled.
May 11 11:55:27 smtp clamd[32162]: PDF support enabled.
May 11 11:55:27 smtp clamd[32162]: HTML support enabled.
May 11 11:55:27 smtp clamd[32162]: Self checking every 600 seconds.

                                          
_________________________________________________________________
The New Busy think 9 to 5 is a cute idea. Combine multiple calendars with 
Hotmail. 
http://www.windowslive.com/campaign/thenewbusy?tile=multicalendar&ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_5
_______________________________________________
Help us build a comprehensive ClamAV guide: visit http://wiki.clamav.net
http://www.clamav.net/support/ml

Reply via email to