Code

. Added a uniquely Roundup header to email, "X-Roundup-Name"
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 14 Feb 2002 22:33:15 +0000 (22:33 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 14 Feb 2002 22:33:15 +0000 (22:33 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@624 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/roundupdb.py

index bd3deaac961160fc271ed5bd863bdc5549577a5f..9a2ee92886229a7287eb9df351d256f25b1d605f 100644 (file)
@@ -1,7 +1,7 @@
 This file contains the changes to the Roundup system over time. The entries
 are given with the most recent entry first.
 
-2002-02-?? - ?????
+2002-02-?? - 0.4.1
 Fixed:
  . Clean up mail handling, multipart handling.
  . respect encodings in non multipart messages.
@@ -10,6 +10,7 @@ Fixed:
  . preamble in tepmlateBuilder mentioned htmldata
  . mailgw checks encoding on first part too.
  . #511586 ] unittest FAIL: testReldate_date
+ . Added a uniquely Roundup header to email, "X-Roundup-Name"
 
 
 2002-01-24 - 0.4.0
index 5f4c90a9322fe50e4ac3f9ca31fde2e10c90aeb6..a313d045471a9680161486f593064674a67e9bed 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: roundupdb.py,v 1.42 2002-01-21 09:55:14 rochecompaan Exp $
+# $Id: roundupdb.py,v 1.43 2002-02-14 22:33:15 richard Exp $
 
 __doc__ = """
 Extending hyperdb with types specific to issue-tracking.
@@ -391,6 +391,9 @@ class IssueClass(Class):
         if inreplyto:
             writer.addheader('In-Reply-To', inreplyto)
 
+        # add a uniquely Roundup header to help filtering
+        writer.addheader('X-Roundup-Name', self.db.config.INSTANCE_NAME)
+
         # attach files
         if message_files:
             part = writer.startmultipartbody('mixed')
@@ -568,6 +571,9 @@ class IssueClass(Class):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.42  2002/01/21 09:55:14  rochecompaan
+# Properties in change note are now sorted
+#
 # Revision 1.41  2002/01/15 00:12:40  richard
 # #503340 ] creating issue with [asignedto=p.ohly]
 #