File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff 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+
1635Migrating from 1.2.x to 1.3.0
1736=============================
1837
You can’t perform that action at this time.
0 commit comments