------------------------------------------------------------ revno: 1648 fixes bug: https://launchpad.net/bugs/1578450 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.1 timestamp: Wed 2016-05-04 18:27:19 -0700 message: Allow DMARC_ORGANIZATIONAL_DOMAIN_DATA_URL to be None or the null string. modified: Mailman/Utils.py NEWS
-- lp:mailman/2.1 https://code.launchpad.net/~mailman-coders/mailman/2.1 Your team Mailman Checkins is subscribed to branch lp:mailman/2.1. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'Mailman/Utils.py' --- Mailman/Utils.py 2016-04-10 04:53:04 +0000 +++ Mailman/Utils.py 2016-05-05 01:27:19 +0000 @@ -1170,6 +1170,8 @@ global s_dict if s_dict: return + if not url: + return try: d = urllib2.urlopen(url) except urllib2.URLError, e: === modified file 'NEWS' --- NEWS 2016-04-22 17:13:16 +0000 +++ NEWS 2016-05-05 01:27:19 +0000 @@ -19,6 +19,9 @@ (LP: #1572330) Bug fixes and other patches + + - A site can now set DMARC_ORGANIZATIONAL_DOMAIN_DATA_URL to None or the + null string if it wants to avoid using this. (LP: #1578450) - The white space to the left of the admindb Logout link is no longer part of the link. (LP: #1573623)
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org