On 27.10.2010, at 21.11, Camron W. Fox wrote: > mailbox_command = /usr/libexec/dovecot/deliver -d ${recipient} > > This causes postfix to bounce the message with this error: > > Oct 27 09:06:57 rb8 postfix/local[1931]: A99494E0D25: > to=<loadt...@subaru.naoj.org>, relay=local, delay=10, > delays=0.08/0/0/10, dsn=5.3.0, status=bounced (command line usage error. > Command output: Fatal: Missing -d argument )
-d has no argument, i.e. ${recipient} expands to empty. Maybe it's case sensitive? Try ${RECIPIENT} ? If not, find something else from Postfix docs..