#!/bin/sh

RUN_NOTIFY="no"

# Source our config
[ -f /etc/default/dspam ] && . /etc/default/dspam

case "$RUN_NOTIFY" in
     [Yy]es)
        [ -x /usr/bin/dspam_notify ] && /usr/bin/dspam_notify
        ;;
      *)
       exit 0
       ;;
esac

exit 0
