> In database table dbmail-aliases i have an e-mail alias whith field > delivery_to=|/dev/null > When I send to this e-mail one of dbmail-lmtpd children became zombie and > message stays in queue. > At one time in console appear message: "sh: line 1: /dev/null: Permission > denied" > /dev/null has following permission: -rw-rw-rw- and owner is root, group is > root
That's because it's trying to execute /dev/null as a command, and it does not have execute permissions (nor should it, as it's not an executable). You need to run an executable program, eg. "|/bin/cat > /dev/null" or maybe "|/bin/true". -- Jesse Norell jesse @ kci.net
