• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/
  • On Plesk for Linux mod_status is disabled on upgrades to improve Apache security.
    This is a one-time operation that occurs during an upgrade. You can manually enable mod_status later if needed.

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