#!/bin/sh
if [ "$1" = "" ]
 then
  BASE=/opt/local/var/assp;
 else
  BASE=$1;
fi
export BASE
echo Stopping ASSP Anti-SPAM Proxy server in $BASE
pidfile=$BASE/pid
kill `cat $pidfile`
