#!/bin/sh # Using splogger to send the log through syslog. # Using qmail-local to deliver messages to ~/Mailbox by default. case "$1" in start) exec env - PATH="/var/qmail/bin:$PATH" \ qmail-start ./Mailbox splogger qmail& exit 0 ;; stop) exec killall qmail-send ;; *) echo "Usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac