#!/bin/bash
vrfy -n -H "$*" > /dev/null 2> /dev/null
if [ $? = 0 ] ; then
   echo "E-Mail Address Okay"
else
   echo "E-Mail Address NOT Okay"
fi
