iredmail-doc/en_US/howto/enable.dnsbl.md

48 lines
1.6 KiB
Markdown
Raw Normal View History

2015-03-13 22:34:58 -06:00
# Enable DNSBL service in Postfix to reduce spam
2016-03-14 08:24:40 -06:00
!!! note "Important Note"
If you're running a high-traffic mail server, you'd better setup a local
DNS server to cache DNS queries, because free RBL services like
`zen.spamhaus.org` may improperly reply if your server exceed the DNS
query limit. Also, mail service higly relies on DNS queries, so a local
DNS server speeds up the mail flow.
2015-03-13 22:34:58 -06:00
You can enable additional DNSBL services in Postfix to reduce spam. We use
`zen.spamhaus.org` for example below.
* Open Postfix config file `/etc/postfix/main.cf` or
`/usr/local/etc/postfix/main.cf` (on FreeBSD), append
`reject_rbl_client zen.spamhaus.org` to parameter `smtpd_recipient_restrictions`.
Final setting looks like below:
```
2016-03-02 10:08:29 -06:00
smtpd_recipient_restrictions =
...
reject_unauth_destination
reject_rbl_client zen.spamhaus.org
2015-03-13 22:34:58 -06:00
```
It must be placed after `reject_unauth_destination`. You can add more DNSBL
services after `reject_unauth_destination`, and they will be queried in the
specified order.
* Restart or reload Postfix service is required.
2016-03-02 10:08:29 -06:00
!!! note "Another popular DNSBL server"
Another popular DNSBL server address is `b.barracudacentral.org`. For more
details, please read its web site:
[Barracuda Reputation Block List (BRBL)](http://www.barracudacentral.org/rbl)
## See also
* [Enable postscreen service](./enable.postscreen.html)
2015-03-13 22:34:58 -06:00
## References
* [Postfix Configuration Parameters: reject_rbl_client](http://www.postfix.org/postconf.5.html#reject_rbl_client)
2015-03-13 22:34:58 -06:00
* [Spamhaus website](http://www.spamhaus.org)
* [Spamhaus DNSBL Usage Terms](https://www.spamhaus.org/organization/dnsblusage/)