|
|
DataMuseum.dkPresents historical artifacts from the history of: Regnecentalen RC-900 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Regnecentalen RC-900 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T U s
Length: 558 (0x22e)
Types: TextFile
Notes: UNIX file
Names: »sendmail«
└─⟦50c223e0a⟧ Bits:30004042/network1.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦50c223e0a⟧ UNIX Filesystem
└─⟦this⟧ »bn/new/etc/init.d/sendmail«
# Copyright (c) 1984 AT&T
# All Rights Reserved
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
# The copyright notice above does not evidence any
# actual or intended publication of such source code.
# sendmail daemon control
case $1 in
'start')
rm -f /usr/spool/mqueue/[lnx]f*
if [ -x /usr/lib/sendmail ]
then
/usr/lib/sendmail -bd -q30m &
fi
;;
'stop')
pid=`/bin/ps -e | grep sendmail | sed -e 's/^ *//' -e 's/ .*//'`
if [ "${pid}" != "" ]
then
/bin/kill ${pid}
fi
;;
*)
echo "usage: /etc/init.d/sendmail {start|stop}"
;;
esac