summaryrefslogtreecommitdiffstats
path: root/auxiliary/rmail/rmail
blob: ab1573c5f0cb86ca342bfe82e663fccf725cad10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# 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" -- "$@"