#!/bin/sh
echo "What is the name of the person who handles spam blocking?"
read NAME
echo $NAME > /etc/smtp-refuser.conf

echo "What is that person's phone number?"
read PHONE
echo $PHONE >> /etc/smtp-refuser.conf

echo smtp-refuser configured.

