Skip to content

Commit 0bf3427

Browse files
author
Alexander Smishlajev
committed
1.3.3 > 1.3.4 upgrade notes
1 parent cf737f6 commit 0bf3427

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

doc/upgrading.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,25 @@ steps.
1313

1414
.. contents::
1515

16+
Migrating from 1.3.3 to 1.3.4
17+
=============================
18+
19+
Value of the "refwd_re" tracker configuration option (section "mailgw")
20+
is treated as UTF-8 string. In previous versions, it was ISO8859-1.
21+
22+
If you have running trackers based on the classic template, please
23+
update the messagesummary detector as follows::
24+
25+
--- detectors/messagesummary.py 17 Apr 2003 03:26:38 -0000 1.1
26+
+++ detectors/messagesummary.py 3 Apr 2007 06:47:21 -0000 1.2
27+
@@ -8,7 +8,7 @@
28+
if newvalues.has_key('summary') or not newvalues.has_key('content'):
29+
return
30+
31+
- summary, content = parseContent(newvalues['content'], 1, 1)
32+
+ summary, content = parseContent(newvalues['content'], config=db.config)
33+
newvalues['summary'] = summary
34+
1635
Migrating from 1.2.x to 1.3.0
1736
=============================
1837

0 commit comments

Comments
 (0)