------------------------------------------------------------
revno: 1503
fixes bug: https://launchpad.net/bugs/1388614
committer: Mark Sapiro <m...@msapiro.net>
branch nick: 2.1
timestamp: Tue 2014-11-04 14:59:40 -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.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/Archiver/HyperArch.py'
--- Mailman/Archiver/HyperArch.py	2013-07-12 22:37:42 +0000
+++ Mailman/Archiver/HyperArch.py	2014-11-04 22:59:40 +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:08:25 +0000
+++ NEWS	2014-11-04 22:59:40 +0000
@@ -33,6 +33,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

Reply via email to