From: richard Date: Thu, 14 Feb 2002 22:33:15 +0000 (+0000) Subject: . Added a uniquely Roundup header to email, "X-Roundup-Name" X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=51ce157ca94ada60070f997d4ec4bbbd1cccd78d;p=roundup.git . Added a uniquely Roundup header to email, "X-Roundup-Name" git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@624 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index bd3deaa..9a2ee92 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py index 5f4c90a..a313d04 100644 --- a/roundup/roundupdb.py +++ b/roundup/roundupdb.py @@ -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] #