#!/bin/sh

/usr/bin/dspam $@
RETVAL=$?
if [ $RETVAL -ne 0 ];
then
        exit 75;
else
        exit $RETVAL;
fi

