david wrote:
> "--max-children must be given if  --external is not given"
...
> "timeout must be given if --external is not given".
...
> Any clues??

Specify --external?

Here's my personal rc.clamav:

clamav_start() {
  if [ -x /usr/local/sbin/clamd ]; then
    echo "Starting clamd:  /usr/local/sbin/clamd"
    /usr/local/sbin/clamd
    # give it time to start up and let the socket create itself
    sleep 2
  fi

  if [ -x /usr/local/bin/freshclam ]; then
    echo "Starting freshclam:  /usr/local/bin/freshclam -d"
    /usr/local/bin/freshclam -d
  fi

  if [ -x /usr/local/sbin/clamav-milter ]; then
    echo "Starting clamav-milter: /usr/local/sbin/clamav-milter -eCfq /var/run/c
lamav/milter.sock"
    /usr/local/sbin/clamav-milter -eCfq /var/run/clamav/milter.sock
    # give it time to start up and let the socket create itself
    sleep 2
  fi
}

Note -e is --external

-- 
Matthew.van.Eerde (at) hbinc.com               805.964.4554 x902
Hispanic Business Inc./HireDiversity.com       Software Engineer
_______________________________________________
http://lurker.clamav.net/list/clamav-users.html

Reply via email to