• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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