#!/bin/sh # qmail-send/run # daemontools run script for qmail start-up # wcm, 2003.11.20 - 2003.12.29 # === DELIVERY="./MAILDIR.POP/" exec 2>&1 echo "*** Starting qmail-send..." echo "*** >> default local delivery to ${DELIVERY}" exec env -i PATH="/var/qmail/bin:$PATH" \ qmail-start ${DELIVERY} ### that's all, folks!