From 6748722f16ff61f24c11f9cb8a90bcc0072c115f Mon Sep 17 00:00:00 2001 From: Mark Sapiro Date: Sat, 19 Apr 2014 17:54:06 -0700 Subject: The new Utils.IsDMARCProhibited() used collections.defaultdict which requires Python 2.5. Changed to use a dict and setdefault. --- Mailman/Utils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mailman/Utils.py b/Mailman/Utils.py index 89b7975e..d62de364 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -35,7 +35,6 @@ import errno import base64 import random import urlparse -import collections import htmlentitydefs import email.Header import email.Iterators @@ -1096,7 +1095,7 @@ def IsDMARCProhibited(email): # where the answer section only contains what was asked for, nor to include # CNAMEs before the values they point to. full_record = "" - results_by_name = collections.defaultdict(list) + results_by_name = {} cnames = {} want_names = set([dmarc_domain + '.']) for txt_rec in txt_recs.response.answer: @@ -1105,7 +1104,7 @@ def IsDMARCProhibited(email): txt_rec.items[0].target.to_text()) if txt_rec.rdtype != dns.rdatatype.TXT: continue - results_by_name[txt_rec.name.to_text()].append( + results_by_name.setdefault(txt_rec.name.to_text(), []).append( "".join(txt_rec.items[0].strings)) expands = list(want_names) seen = set(expands) -- cgit v1.2.3