Sync usage with man page.
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / examples / qmail-local / qmail-local.txt
blobbf62319e01fb313a6eee46ecf118db32061d9995
1 From: Ron Bickers <rbickers@logicetc.com>
3 For the archives (or for comment):
5 I now have mailbox_command = /usr/local/libexec/postqmail-local and
6 postqmail-local looks like this (minus some mailer wrapping):
8   #!/bin/sh
9   export PATH=$PATH:/usr/local/bin:/var/qmail/bin
10   tail +2 | seekablepipe qmail-local -- \
11     "$USER" "$HOME" "$LOCAL" "${EXTENSION:+-}" "$EXTENSION"
12     "$DOMAIN""$SENDER" ./Maildir/
13   e=$?
14   (($e == 111)) && exit 75
15   (($e == 100)) && exit 77
16   exit $e