I'm not sure to whom I should report this. Mate Wierdl ?
In the memphis RPM for linux (very nice), there's a slight problem:
The file /etc/rc.d/init.d/qmail.init
contains
DEFAULT_DELIVERY="`cat $QMAILHOME/defaultdelivery/rc`"
and /var/qmail/defaultdelivery/rc is the file
---begin file---
# Using qmail-local to deliver messages to ~/Mailbox by default.
./Mailbox
---end file---
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)
I just removed the comment and it worked.
It was with the RPM qmail-1.03-11ucspi.i386.rpm
Florent