changeset 612:a2aeebf3d6bd

Added a uniquely Roundup header to email, "X-Roundup-Name"
author Richard Jones <richard@users.sourceforge.net>
date Thu, 14 Feb 2002 22:33:15 +0000
parents 74a7d06449bf
children d77b82588bf0
files CHANGES.txt roundup/roundupdb.py
diffstat 2 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES.txt	Thu Feb 14 11:11:36 2002 +0000
+++ b/CHANGES.txt	Thu Feb 14 22:33:15 2002 +0000
@@ -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 @@
  . 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
--- a/roundup/roundupdb.py	Thu Feb 14 11:11:36 2002 +0000
+++ b/roundup/roundupdb.py	Thu Feb 14 22:33:15 2002 +0000
@@ -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 @@
         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 @@
 
 #
 # $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]
 #

Roundup Issue Tracker: http://roundup-tracker.org/