• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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