#!/bin/sh
#------------------------------------------------------------ 
# copyright (C) 2002 DMC Netsourced.com, all rights reserved.
#------------------------------------------------------------
# This mails the IPSEC VPN key to admin.
# --------------------------------------

QMAILNAME="IPSEC VPN"
QMAILUSER=root
QMAILINJECT=f
export QMAILNAME QMAILUSER QMAILINJECT

/bin/mail -s "IPSEC VPN Public Key" postmaster < /root/pubenckey
/bin/rm -f /root/pubenckey

exit 0
