[Cialug] Help configuring Qmail with checkpassword for SMTP auth
albus
cialug@cialug.org
Tue, 22 Feb 2005 10:13:46 -0600
Claus,
I was told when my server was setup from Inter7 that they used check
password.
Here is my run file.
Hope it helps. I'm using vpopmail so there aren't any real system accounts
If you need anything else let me know.
#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
LOCAL=`head -1 /var/qmail/control/me`
if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" -o -z "$LOCAL" ];
then
echo QMAILDUID, NOFILESGID, MAXSMTPD, or LOCAL is unset in
echo /var/qmail/supervise/qmail-smtpd/run
exit 1
fi
if [ ! -f /var/qmail/control/rcpthosts ]; then
echo "No /var/qmail/control/rcpthosts!"
echo "Refusing to start SMTP listener because it'll create an open
relay"
exit 1
fi
exec /usr/local/bin/softlimit -m 8000000 \
/usr/local/bin/tcpserver -v -R -l "$LOCAL" -x /etc/tcp.smtp.cdb -c
"$MAXSMTPD" \
-u "$QMAILDUID" -g "$NOFILESGID" 0 smtp rblsmtpd \
-r sbl-xbl.spamhaus.org \
-r relays.ordb.org \
/var/qmail/bin/qmail-smtpd /home/vpopmail/bin/vchkpw
/bin/true 2>&1
Sincerely,
Joel Eddy
MCSE/MCP+I
Iowa Connect, Inc.
Ph: 641-456-5964
Fax: 641-456-5912
----- Original Message -----
From: "Claus" <cniesen@gmx.net>
To: <cialug@cialug.org>
Sent: Tuesday, February 22, 2005 9:57 AM
Subject: [Cialug] Help configuring Qmail with checkpassword for SMTP auth
> Hello,
>
> I asked this question a couple days ago on the AmesFUG list but didn't get
> any responce. Maybe I have more luck here as I obviously still haven't
> solved the problem. Let me know if more info is needed.
>
> Claus
>
>
>> I'm installing a new email server and so far have done the following:
>>
>> Downloaded and installed netqmail as described in LifeWithQmail and added
>> the netqmail-1.05-tls-smtpauth-20041111.patch from
>> http://shupp.org/smtp-auth-tls.
>>
>> Sending through the SMTP server works in plain and in TLS mode. Now I'm
>> trying to add checkpassword from http://cr.yp.to/checkpwd.html to enable
>> authentication for SMTP. The install and the following test worked
>> without
>> a flaw:
>>
>> # /var/qmail/bin/qmail-popup blah /bin/checkpassword pwd
>> +OK <... at blah>
>> user Frodo
>> +OK
>> pass Friend
>>
>> The problem is to integrate the checkpassword with qmail-smtpd. I
>> modified
>> the /service/qmail-smtpd/run file to the following but still don't have
>> any
>> success logging in. I get asked for the password but the authentication
>> seems to fail.
>>
>> #!/bin/sh
>>
>> QMAILDUID=`id -u qmaild`
>> NOFILESGID=`id -g qmaild`
>> MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
>> LOCAL=`head -1 /var/qmail/control/me`
>>
>> if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" -o -z
>> "$LOCAL" ];
>> then
>> echo QMAILDUID, NOFILESGID, MAXSMTPD, or LOCAL is unset in
>> echo /var/qmail/supervise/qmail-smtpd/run
>> exit 1
>> fi
>>
>> if [ ! -f /var/qmail/control/rcpthosts ]; then
>> echo "No /var/qmail/control/rcpthosts!"
>> echo "Refusing to start SMTP listener because it'll create an open
>> relay"
>> exit 1
>> fi
>>
>> exec /usr/local/bin/softlimit -m 2000000 \
>> /usr/local/bin/tcpserver -v -R -l "$LOCAL" -x /etc/tcp.smtp.cdb -c
>> "$MAXSMTPD" \
>> -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp
>> /var/qmail/bin/qmail-smtpd
>> "$LOCAL" /bin/checkpassword /usr/bin/true 2>&1
>>
>> My guess is that somehow this startup script is incorrect but I really
>> don't
>> have a clue as I haven't found any useful messages/logs/google-postings
>> and
>> I'm looking at it for a full day now. Anybody got something like this
>> working or has a clue what could be wrong?
>>
>> Claus
> _______________________________________________
> Cialug mailing list
> Cialug@cialug.org
> http://cialug.org/mailman/listinfo/cialug
>
>