I have progressed through all my recent problems and I'm almost
there. When I send mail to one of my users it delivers the messages into a
$HOME/Mailbox file. I'm sure this isn't the way it is supposed to work
because I am not able to see anything when I pop the account. Can someone
point me into the right direction to get qmail+ldap to deliver into
$HOME/Maildir.
Here is my /var/qmail/rc script:
#!/bin/sh
# Using splogger to send the log through syslog.
# Using qmail-local to deliver messages to ~/Mailbox by default.
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start ./Maildir/
Here is my /service/pop3d/run file:
#!/bin/sh
exec 2>&1 \
envdir ./env \
sh -c '
case "$REMOTENAME" in h) H=;; p) H=p;; *) H=H;; esac
case "$REMOTEINFO" in r) R=;; [0-9]*) R="t$REMOTEINFO";; *) R=R;; esac
exec \
softlimit ${DATALIMIT+"-d$DATALIMIT"} \
/usr/local/bin/tcpserver \
-vD"$H$R" \
${LOCALNAME+"-l$LOCALNAME"} \
${BACKLOG+"-b$BACKLOG"} \
${CONCURRENCY+"-c$CONCURRENCY"} \
-xtcp.cdb \
-- "${IP-0}" "${PORT-110}" \
/var/qmail/bin/qmail-popup "${POPUPHOST-`sed 1q
/var/qmail/control/me`}" \
/var/qmail/bin/auth_pop \
/var/qmail/bin/qmail-pop3d ./Maildir/ #"${MAILDIRNAME-Maildir}"
Something that seems a bit strange though:
#ps -auxww |grep qmail-lspawn
root 1813 0.0 1.3 2012 776 ?? I 4:39PM 0:00.08
qmail-lspawn ./Mailbox
Seems a little strange that it is refrencing ./Mailbox
-Chad Morland