#!/bin/sh echo -n "Qmail delivery system: " case $1 in start) ## start the qmail delivery system echo "starting." env - PATH="/var/qmail/bin:$PATH" \ qmail-start ./Maildir/ splogger qmail & ;; stop) echo "stop the processes manually." ;; *) echo "Unknown command: $1" ;; esac