Well, I knew I'd get it sooner than later... just didn't think it would be
this easy(?)
[/var/qmail/control] root@gateway(ttyp1)
[2:39am]# grep Mailbox *
ldapmessagestore:Mailbox
After noticing my mistake and correcting the problem:
[/var/qmail/control]root@gateway(ttyp1)
[2:40am]#telnet 0 110
Trying 0.0.0.0...
Connected to 0.
Escape character is '^]'.
+OK <[EMAIL PROTECTED]>
user pbdr8
+OK
pass test
+OK
list
+OK
1 1407
.
Thanks for the help in getting me up and running guys!!
-Chad Morland
On Thu, 31 Jan 2002, Chad Morland wrote:
> 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
>
>