On Fri, Nov 22, 2002 at 04:21:23PM +0100, Didier Geheniau wrote:
> > ... qmail-popup ${HOST} auth_pop qmail-pop3d ./Maildir/
>
> My deamon run script for pop3 looks like this:
>
> #!/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`}" \
> /bin/checkpassword \
> /var/qmail/bin/qmail-pop3d "${MAILDIRNAME-Maildir}"
> '
>
> Can I replace '"${MAILDIRNAME-Maildir}"' with '"./Maildir/"' ?
>
> Because when I do that and reload qmail I still have the same problem
>
Depends if you have ./Maildir/ too in the qmail start script.
I normaly use ./ instead of ./Maildir/.
Also check if the users has a correct Maildir at the location
/mailstore/<company>/<user>
e.g. if you have ./ as default delivery option.
.../<user>/new/
.../<user>/cur/
.../<user>/tmp/
--
:wq Claudio