• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

How I integrate qmail with RBL lists ??

B

BillieGDJoe

Guest
Hi folks,



I need to put a RBL check on Qmail in a Plesk 8 server (RHEL4), but I can't do that through the Plesk web interface, so I need to do this in a command line. I tryed to add a check in xinetd smtp_psa file, but it not work. Any ideas ?? Thanks !!
 
edit /etc/xinetd.d/smtp_psa

server_args = -Rt0 /usr/sbin/rblsmtpd -r opm.blitzed.org -r rbl-plus.mail-abuse.org -r bl.spamcop.net -r relays.ordb.org -r blackholes.mail-abuse.org -r cbl.abuseat.org -r sbl-xbl.spamhaus.org

This works for me.
 
Originally posted by crnunez
I have the same problem, I can't add RBL throght Control Panel.


I found the solution. Here is my config:

[root@server ~]# cat /etc/xinetd.d/smtp_psa
service smtp
{
disable = no
socket_type = stream
protocol = tcp
wait = no
user = root
instances = UNLIMITED
server = /var/qmail/bin/tcp-env
server_args = -R -t0 /var/qmail/bin/relaylock /usr/sbin/rblsmtpd -B -t 300 -r sbl-xbl.spamhaus.org /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true
}


P.S.: server_args must be one line only.

Hope this help,
 
Back
Top