Vince <[EMAIL PROTECTED]> wrote: >my rc file is this > ># Using splogger to send the log through syslog. ># Using procmail to deliver messages to /var/spool/mail/$USER by default. > >exec env - PATH="/var/qmail/bin:$PATH" \ >qmail-start "`cat /home/./Maildir/`" That says that at the time qmail is started, the default delivery instruction is set to the *contents* of /home/Maildir. This is almost certainly not what you want. If you want delivery to a maildir called Maildir in the user's home directory, try: exec env - PATH="/var/qmail/bin:$PATH" \ qmail-start ./Maildir/ -Dave
