#!/bin/sh
# This simple script just deletes the ~/.forward file and the ~/.remail
# directory tree. It is placed in ~/bin by the remailer installation
# script, so that the user can remove the remailer in an emergency,
# rather easily

# Use with caution

if [ -s $HOME/.forward.0 ]
then
  mv $HOME/.forward.0 $HOME/.forward
else
  rm -f $HOME/.forward
fi

rm -rf $HOME/.remail
rm $0


