Gavin Cameron writes:
> I have a ~alias/.qmail-bouncer file with the contents
> 
>   |bouncesaying 'This is an automated bounce message' exit 0

bouncesaying tries to execvp() the given program; it doesn't use a
shell to run the program. So it can't run a shell built-in command.

Instead of above, you might want to write:

  |bouncesaying 'This is an automated bounce message' sh -c 'exit 0'

or simply:

  |bouncesaying 'This is an automated bounce message'

-- 
Tetsu Ushijima

Reply via email to