This means that upon execution of the init file,
DEFAULT_DELIVERY will be the string
"# Using qmail-local to deliver messages to ~/Mailbox by default. ./Mailbox"
all on one line, which is incorrect.
(It's a feature of backquoting in sh, that it removes newlines)
$ DEFAULT_DELIVERY="`cat /var/qmail/defaultdelivery/rc`"
$ echo "$DEFAULT_DELIVERY"
# Using qmail-local to deliver messages to ~/Mailbox by default.
./Mailbox
Note the quoting in the echo line.
It is another matter that it is not good to see this darn thing when
running ps, so I will change this in the next release.
Mate