diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2002-03-22 06:40:26 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2002-03-22 06:40:26 +0000 |
commit | f01b2363695a4b9994f65a870ad00da0ddf871d3 (patch) | |
tree | a3b4d7d768bcbaa6b98e8249e7f181256a11c3fd /etc/sendmail | |
parent | 58e99859240c88dc8bbd56164e735096bbbbe8f5 (diff) | |
download | FreeBSD-src-f01b2363695a4b9994f65a870ad00da0ddf871d3.zip FreeBSD-src-f01b2363695a4b9994f65a870ad00da0ddf871d3.tar.gz |
Instead of dealing with the endless requests to provide more DNS based
black lists in the default config, give a pointer to a non-static list.
I was convinced this was the right thing to do after getting a PR
asking to add ORBZ the day before ORBZ went off the air.
PR: conf/35884
MFC after: 4 days
Diffstat (limited to 'etc/sendmail')
-rw-r--r-- | etc/sendmail/freebsd.mc | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/etc/sendmail/freebsd.mc b/etc/sendmail/freebsd.mc index 6f5203c..578af42 100644 --- a/etc/sendmail/freebsd.mc +++ b/etc/sendmail/freebsd.mc @@ -59,23 +59,19 @@ dnl NOTE: This can allow sites to use your server as a backup MX without dnl your permission. dnl FEATURE(relay_based_on_MX) +dnl DNS based black hole lists +dnl -------------------------------- +dnl DNS based black hole lists come and up on a regular basis +dnl do this file will not serve as a database of the available servers. +dnl For that, visit http://dmoz.org/Computers/Internet/Abuse/Spam/Blacklists/ + dnl Uncomment to activate Realtime Blackhole List dnl information available at http://www.mail-abuse.com/ dnl NOTE: This is a subscription service as of July 31, 2001 dnl FEATURE(dnsbl) -dnl Alternatively, you can provide your own rejection message for the RBL: +dnl Alternatively, you can provide your own server and rejection message: dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', `"550 Mail from " $&{client_addr} " rejected, see http://mail-abuse.org/cgi-bin/lookup?" $&{client_addr}') -dnl Other DNS based black hole lists -dnl -------------------------------- -dnl MAPS Relay Spam Stopper (RSS): http://mail-abuse.org/rss/ -dnl NOTE: This is a subscription service as of July 31, 2001 -dnl FEATURE(dnsbl, `relays.mail-abuse.org', `"550 Mail from " $&{client_addr} " rejected; see http://mail-abuse.org/cgi-bin/nph-rss?" $&{client_addr}') - -dnl MAPS Dial-up User List (DUL): http://maps.vix.com/dul/ -dnl NOTE: This is a subscription service as of July 31, 2001 -dnl FEATURE(dnsbl, `dialups.mail-abuse.org', `"550 Mail from dial-up rejected; see http://mail-abuse.org/dul/enduser.htm"') - dnl Dialup users should uncomment and define this appropriately dnl define(`SMART_HOST', `your.isp.mail.server') |