Your IP : 216.73.216.73


Current Path : /usr/sbin/
Upload File :
Current File : //usr/sbin/mailshield.sh

#!/bin/bash

export HOME=/root

RETURNVAL="$(nc -N -U /srv/mail-socket/mail.sock)"

if [ "$RETURNVAL" = "ok" ]; then
  exit 0
else
  exit 1
fi