> Brandon Dudley <[EMAIL PROTECTED]> wrote:
>
> > csh -cf 'qmail-start |dot-forward .forward ./Mailbox splogger qmail
>&'
>
> Because your "defaultdelivery" argument contains spaces, you need to
> quote them:
>
> csh -cf 'qmail-start "|dot-forward .forward ./Mailbox" splogger qmail &'
> or
>
> csh -cf 'qmail-start |dot-forward\ .forward\ ./Mailbox splogger qmail &'
>
> Assuming "|dot-forward .forward ./Mailbox" is the syntax dot-forward
> expects. I don't use dot-forward, so I don't know for sure, but I
> suspect you really need something like:
>
> csh -cf 'qmail-start "|dot-forward .forward
> ./Mailbox" splogger qmail &'
>
> Note the line break after the dot-forward command.
>
> -Dave
tried all 3 permutations, all gave different errors.
part of the problem is that when I try to change the csh line, the shell
fails to execute using the explicit PATH statement, so it cannot find the
executables. When I used the fully-qualified path for each executable, it
erred out with 111 and 1 exit statuses, depending on which of the 3 I used.
Sorry, I didn't save the errors.
Brandon