diff options
author | Mark Sapiro <mark@msapiro.net> | 2018-07-02 15:37:24 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2018-07-02 15:37:24 -0700 |
commit | ed67e04ca43c06aba6485a3af8c6d7ec537d3704 (patch) | |
tree | 2743c48a4502e65d74efab4d0268338d36906fe1 | |
parent | 6d34c9abd0d8e425f03215153fc80c18d5253a53 (diff) | |
download | mailman2-ed67e04ca43c06aba6485a3af8c6d7ec537d3704.tar.gz mailman2-ed67e04ca43c06aba6485a3af8c6d7ec537d3704.tar.xz mailman2-ed67e04ca43c06aba6485a3af8c6d7ec537d3704.zip |
Fixed BLOCK_SPAMHAUS_LISTED_DBL_SUBSCRIBE to use DBL, not ZEN.
-rw-r--r-- | Mailman/Utils.py | 2 | ||||
-rw-r--r-- | NEWS | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index d504ecce..01dfa9c0 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -1543,7 +1543,7 @@ def banned_domain(email): email = email.lower() user, domain = ParseEmail(email) - lookup = '%s.zen.spamhaus.org' % (domain) + lookup = '%s.dbl.spamhaus.org' % (domain) resolver = dns.resolver.Resolver() try: @@ -5,6 +5,13 @@ Copyright (C) 1998-2018 by the Free Software Foundation, Inc. Here is a history of user visible changes to Mailman. +2.1.28 (xx-xxx-xxxx) + + Bug fixes and other patches + + - The BLOCK_SPAMHAUS_LISTED_DBL_SUBSCRIBE feature added in 2.1.27 was + not working. This is fixed. (LP: #1779774) + 2.1.27 (22-Jun-2018) Security |