------------------------------------------------------------ revno: 1360 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.2 timestamp: Tue 2014-11-04 15:00:35 -0800 message: Fixed an archiving bug that would cause messages with 'Subject: Re:' only to be indexed in the archives without a link to the message. modified: Mailman/Archiver/HyperArch.py NEWS
-- lp:mailman/2.2 https://code.launchpad.net/~mailman-coders/mailman/2.2 Your team Mailman Checkins is subscribed to branch lp:mailman/2.2. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription
=== modified file 'Mailman/Archiver/HyperArch.py' --- Mailman/Archiver/HyperArch.py 2013-07-12 22:38:22 +0000 +++ Mailman/Archiver/HyperArch.py 2014-11-04 23:00:35 +0000 @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2014 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -271,6 +271,8 @@ if result: i = result.end(0) self.subject = self.subject[i:] + if self.subject == '': + self.subject = _('No subject') else: i = -1 # Useful to keep around === modified file 'NEWS' --- NEWS 2014-10-25 20:10:13 +0000 +++ NEWS 2014-11-04 23:00:35 +0000 @@ -77,6 +77,10 @@ Bug fixes and other patches + - Fixed an archiving bug that would cause messages with 'Subject: Re:' + only to be indexed in the archives without a link to the message. + (LP: #1388614) + - The vette log entry for a message discarded by a handler now includes the list name and the name of the handler. (LP: #558096)
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org