On Mon, May 29, 2000 at 04:57:29AM -0400, Larry Lindsay wrote:
> I have installed qmail using Maildirs on my Linux box (Slackware). I have a
> couple of questions:
>
> I tried setting up a pop toaster, but it is not working. Instead of looking
> for the messages in the Maildirs, it looks for the messages in
> /var/spool/mail/user instead. my rc file is as follows:
>
> exec env - Path="var/qmail/bin:$PATH" \
> qmail-start "'cat /var/qmail/control/defaultdelivery'" splogger qmail #
Change ' to ` above, i.e.
exec env - Path="var/qmail/bin:$PATH" \
qmail-start "`cat /var/qmail/control/defaultdelivery`" splogger qmail
> tcpserver 0 110 /var/qmail/bin/qmail-popup bummer.net \
> /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir &
>
> when testing my pop connection, I get the following:
>
> $ telnet localhost 110
> Trying localhost...
> Connected to bummer.net.
> Escape character is '^]'.
> +OK <[EMAIL PROTECTED]>
> user popuser
> +OK
> pass
> +OK 0 messages ready for popuser in /var/spool/mail/popuser
This doesn't look like anything qmail-pop3d would say. Check /etc/inetd.conf
and see if you're running another POP server.
Chris