dcelasun wrote:
By the way, running automated queries against most of the blacklists is against their TOS. CBL even says that they'll take action if it doesn't stop.
If I am understanding correctly, you must be referring to automated queries using the web interface. If automated queries using DNS lookups is against their TOS, then any mail system that blocks spam based on the IP being listed in a DNSBL would be in violation.
mrdavidlaing wrote:
How do you professional SysAdmins go about proactively monitoring the email deliverability status / RBL listing status of your IPs?
I wrote a PHP script that is run from cron that does automated lookups of some common blacklists. I have an occasional false positive, but they are obvious because I receive a text message stating the server is "listed in No error code exists." It's pretty obvious.
All of our e-mail is sent to/from the same anti-spam devices. SO, what my script does is do a DNS lookup for all MX records for each domain in an array. It then looks up the IP address for each of those MX records. Lastly, it does a DNS lookup of the IP address on the appropriate DNSBL. I have to program in the expected responses so that I receive a humanly understandable message.
If you want a copy, let me know and I'll post it.