James Stevens wrote: > Hi folks, > I followed the http://www.lifewithqmail.org/ldap with success as far as > verifying accounts and delivering mail. So far so good. Then I tried the > AUTH_SMTP patch. This didn't seem to work though. I am including what I > think is the pertinent information. > > run file: > #!/bin/sh > QMAILDUID=`/usr/xpg4/bin/id -u vmail` > NOFILESGID=`/usr/xpg4/bin/id -g vmail` > MAXSMTPD=`cat /var/qmail/control/concurrencyincoming` > if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" ]; then > echo QMAILDUID, NOFILESGID, or MAXSMTPD is unset in > echo /var/qmail/supervise/qmail-smtpd/run > exit 1 > fi > exec /usr/local/bin/softlimit -m 4000000 \ > /usr/local/bin/tcpserver -v -R -l 0 -x /etc/tcp.smtp.cdb -c > "$MAXSMTPD" \ > -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp > /var/qmail/bin/qmail-smtpd \ > /var/qmail/bin/auth_smtp /usr/bin/true 2>&1 > ********** > > permissions for auth_smtp: > -rwxr-xr-x 1 root qmail 70772 Mar 28 16:24 auth_smtp > > permissions for control/ldap* files: > -rw-r--r-- 1 root other > > Any thoughts?
I've had problems with SMTP AUTH when using rebind. Try turning it off and see if it works better. Also, increasing the softlimit if you are running on a linux os might give results. -- -Torgeir
