#!      /bin/csh -f
#
# Copyright 1993, 1994, 1995 by the Regents of the University of California.
# see the file "Copyright" in the distribution for conditions of use.
#
#
#       restore normal default - no vacation, forwarding, etc.
#
if( -e ~/.forward ) then
	grep -s vacation ~/.forward
	set s = $status
else
	set s = 1
endif
#
/bin/rm -f ~/.forward
if ( $status ) then
	echo No changes made.
else
	echo ' '
	echo Your mail will now be saved in your inbox.
	if( ! $s ) echo Your vacation message will no longer be sent.
endif
exit 0
