Geoff Roberts <[EMAIL PROTECTED]> wrote:
>>The "commands" in the dot-qmail are delivery instructions.
>>qmail-local follows each instruction in turn.
>>
>>The lines are not chained together in some sort of pipe, so each line gets
>>THE SAME MESSAGE.
>>
>>If you want to do piping, then do everything on one single line with pipes.
>
> So that means I can't do:
> |command .... |./Maildir/
What the heck is that supposed to do? Have you hacked Maildir support
into your shell so a pipe to a Maildir does a delivery? :-)
> to write out to a maildir after some commands as the ./Maildir/ needs to
>be on a line by itself.
>
> How could I do this instead?
Give us an example of what you'd like to do, and we'll show you how to
do it. Depending upon what you're trying to do, something like:
|command ... exit 99 ...
./Maildir
or
|command ... | safecat Maildir/tmp Maildir/new
should do the trick.
-Dave