Youri V. Kravatsky wrote:
> Hello Eric,
> 
>> chkuser is implemented via a patch to qmail.
> Well, BEFORE spamdyke adding, my chkuser was working perfectly (rejecting
> mails to non-existant and overquoting users). Now, as far as I understand,
> spamdyke injects received mails directly to qmail queue, or send them
> through local smtp, so they are always accepted, so queue of my server is
> full of autoresponses.

This is not quite right. Spamdyke passes them on to qmail-smtpd 
according to how you've configured your smtp/run file. An example is:
#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SPAMDYKE="/usr/local/bin/spamdyke"
SPAMDYKE_CONF="/etc/spamdyke/spamdyke.conf"
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
REQUIRE_AUTH=0

exec /usr/bin/softlimit -m 20000000 \
    /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
    -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
    $SPAMDYKE --config-file $SPAMDYKE_CONF \
    $SMTPD $VCHKPW /bin/true 2>&1


> Sam said, that there is no problem in using spamdyke
> and chkuser - and I again asking - how can I do it? I didn't found any
> traces about it in docs/faqs.
> 


-- 
-Eric 'shubes'

_______________________________________________
spamdyke-users mailing list
[email protected]
http://www.spamdyke.org/mailman/listinfo/spamdyke-users

Reply via email to