summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 10aca51)
raw | patch | inline | side by side (parent: 10aca51)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 14 Feb 2002 22:33:15 +0000 (22:33 +0000) | ||
committer | richard <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 | patch | blob | history | |
roundup/roundupdb.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index bd3deaac961160fc271ed5bd863bdc5549577a5f..9a2ee92886229a7287eb9df351d256f25b1d605f 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
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.
. 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 5f4c90a9322fe50e4ac3f9ca31fde2e10c90aeb6..a313d045471a9680161486f593064674a67e9bed 100644 (file)
--- a/roundup/roundupdb.py
+++ b/roundup/roundupdb.py
# 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.
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')
#
# $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]
#