Are you authorizing with the client?
On 7/18/2019 7:51 AM, Leonardo Porto wrote:
Hi everyone,
My relay rules on tcp.smtp.cdb are not working after I installed a new
server.
Here is my /etc/tcprules.d/tcp.smtp:
:allow,BADMIMETYPE="",BADLOADERTYPE="M",CHKUSER_RCPTLIMIT="50",CHKUSER_WRONGRCPTLIMIT="3",NOP0FCHECK="1",QMAILQUEUE="/var/qmail/bin/simscan",DKQUEUE="/var/qmail/bin/qmail-queue.orig",DKVERIFY="DEGIJKfh",DKSIGN="/var/qmail/control/domainkeys/%/private"
10.5.5.189:allow,RELAYCLIENT=""
187.0.147.204:allow,RELAYCLIENT=""
208.84.243.:allow,RBLSMTPD=""
First line is the original from toaster installation, the other three
lines I included the same way they were in the old server and I
generated a new cdb file using "qmailctl cdb" command.
My /var/qmail/supervise/submission/run:
#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
export SMTPAUTH="!"
exec /usr/bin/softlimit -m 128000000 \
/usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
-u "$QMAILDUID" -g "$NOFILESGID" 0 587 \
$SMTPD $VCHKPW /bin/true 2>&1
But I still can't relay from those two clients throught port 587, the
server asks for authentication. Any clues?