#!/bin/sh
# WARNING: This file was auto-generated. Do not edit!
#
# $Log: rmail.sh,v $
# Revision 1.2  2017-03-09 16:39:24+05:30  Cprogrammer
# FHS changes
#
# Revision 1.1  2010-06-19 13:34:26+05:30  Cprogrammer
# Initial revision
#
#
# Dummy UUCP rmail command for postfix/qmail systems

SENDMAIL="/usr/sbin/sendmail"
IFS=" " read junk from junk junk junk junk junk junk junk relay

case "$from" in
 *[@!]*) ;;
      *) from="$from@$relay";;
esac

exec $SENDMAIL -i -f "$from" -- "$@"
