> > sa-update --gpgkey 6C6191E3 --channel sought.rules.yerp.org --channel
> > updates.spamassassin.org && /usr/sbin/rcamavisd reload
> 
> I do this same thing, except instead of doing a reload I do:
>   /usr/sbin/rcamavisd restart
> I have not encountered the problems you mention.

Substantially, my startup script is this:

. /etc/rc.status

# First reset status of this service
rc_reset

prog="/usr/local/sbin/amavisd"
prog_base="$(basename ${prog})"

prog_config_file="/etc/amavisd.conf"

# Source configuration.
[ -e /etc/sysconfig/${prog_base} ] && . /etc/sysconfig/${prog_base}

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

# See how we were called.
case "$1" in
  start)
        echo -n "Starting amavisd-new: "
        ${prog} -c ${prog_config_file}
        rc_status -v
        ;;
  stop)
        echo -n "Shutting down amavisd-new: "
        ${prog} -c ${prog_config_file} stop >/dev/null 2>&1
        rc_status -v
        ;;
  status)
        checkproc ${prog}
        rc_status -v
        ;;
  restart)
        $0 stop
        $0 start
        ;;
  reload)
        echo -n "Reloading amavisd-new: "
        ${prog} -c ${prog_config_file} reload
        rc_status -v
        ;;
  *)
        echo "Usage: $0 {start|stop|status|restart|reload}"
        exit 1
esac
rc_exit

But I fear that the real problem is that amavisd-new at reload time is 
overcomed by the flow of messages queued by Postfix to be injected into the 
amavis content filter.

At this porpouse, maybe I have to tune some setting into postfix.

Anyway, I'm not able to show tecnically that is my case. Is only a feeling. So 
I aspect that someone in list give me a more reasonable explanation.

rocsca

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
AMaViS-user mailing list
[email protected] 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/ 

Reply via email to