diff options
author | lioux <lioux@FreeBSD.org> | 2001-05-26 11:27:55 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-05-26 11:27:55 +0800 |
commit | 10cecad6c5640dc7e372b4ea05523bd2f38aba01 (patch) | |
tree | 3033b35c811a4089294f236ef4a4bcf7571d9013 /mail/qmail/files | |
parent | c8b5b84309e866507ccf087e98f6ca17f3371b26 (diff) | |
download | freebsd-ports-gnome-10cecad6c5640dc7e372b4ea05523bd2f38aba01.tar.gz freebsd-ports-gnome-10cecad6c5640dc7e372b4ea05523bd2f38aba01.tar.zst freebsd-ports-gnome-10cecad6c5640dc7e372b4ea05523bd2f38aba01.zip |
1) Fix bug introduced in Makefile rev 1.29: files/maildir not
replacing @PREFIX@ with ${PREFIX}
2) Rewrite rc script patching to both handle more cases and
fix (1). Mostly within thereal-post-patch target
3) Update files/maildir both due to (2) and to resemble the rc
scripts supplied with the qmail distribution
Prompted by: Thomas Sarlandie <sarfata@altern.org>
Diffstat (limited to 'mail/qmail/files')
-rw-r--r-- | mail/qmail/files/maildir | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/mail/qmail/files/maildir b/mail/qmail/files/maildir index de9c2799a4b9..a11543bcdf7a 100644 --- a/mail/qmail/files/maildir +++ b/mail/qmail/files/maildir @@ -3,17 +3,6 @@ # Using splogger to send the log through syslog. # Using qmail-local to deliver messages to Maildir format by default -case "$1" in -start) - exec env - PATH="@PREFIX@/qmail/bin:$PATH" \ - qmail-start ./Maildir/ splogger qmail& - exit 0 - ;; -stop) - exec killall qmail-send - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac +exec env - PATH="QMAIL/bin:$PATH" \ +qmail-start ./Maildir/ \ +splogger qmail |