• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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