hi all:
I use qmail -l dap. I dont find the auth option in Makefile after applied
the ldap patch.
And I start the services, like this:
#!/bin/sh
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
MAXSMTPD=`head -1 /var/qmail/control/concurrencyincoming`
if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" ]; then
echo QMAILDUID, NOFILESGID, or MAXSMTPD is unset in
echo $0
exit 1
fi
exec /usr/bin/softlimit -m 10000000 \
/usr/bin/tcpserver -v -R -H -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 /bin/true 2>&1
But, I can not relay with pop information, only works tcp.smtp rules.
I need to permit only relay if the user gives pop information.
Can you help me, please?
�ngel