1 |
--- mailman/Mailman/Archiver/HyperArch.py.orig 2005-10-23 07:04:15.000000000 -0400 |
2 |
+++ mailman/Mailman/Archiver/HyperArch.py 2005-10-23 07:05:45.000000000 -0400 |
3 |
@@ -432,7 +432,7 @@ class Article(pipermail.Article): |
4 |
d["title"] = self.quote(self.subject) |
5 |
d["subject_html"] = self.quote(self.subject) |
6 |
d["subject_url"] = url_quote(self.subject) |
7 |
- d["in_reply_to_url"] = url_quote(self.in_reply_to) |
8 |
+ d["in_reply_to_url"] = url_quote(self._message_id) |
9 |
if mm_cfg.ARCHIVER_OBSCURES_EMAILADDRS: |
10 |
# Point the mailto url back to the list |
11 |
author = re.sub('@', _(' at '), self.author) |
12 |
--- mailman/templates/en/article.html.orig 2005-10-23 07:21:04.000000000 -0400 |
13 |
+++ mailman/templates/en/article.html 2005-10-23 07:27:08.000000000 -0400 |
14 |
@@ -4,7 +4,7 @@ |
15 |
<TITLE> %(title)s |
16 |
</TITLE> |
17 |
<LINK REL="Index" HREF="index.html" > |
18 |
- <LINK REL="made" HREF="mailto:%(email_url)s?Subject=%(subject_url)s&In-Reply-To=%(in_reply_to_url)s"> |
19 |
+ <LINK REL="made" HREF="mailto:%(email_url)s?Subject=Re:%%20%(subject_url)s&In-Reply-To=%(in_reply_to_url)s"> |
20 |
<META NAME="robots" CONTENT="index,nofollow"> |
21 |
%(encoding)s |
22 |
%(prev)s |
23 |
@@ -13,7 +13,7 @@ |
24 |
<BODY BGCOLOR="#ffffff"> |
25 |
<H1>%(subject_html)s</H1> |
26 |
<B>%(author_html)s</B> |
27 |
- <A HREF="mailto:%(email_url)s?Subject=%(subject_url)s&In-Reply-To=%(in_reply_to_url)s" |
28 |
+ <A HREF="mailto:%(email_url)s?Subject=Re:%%20%(subject_url)s&In-Reply-To=%(in_reply_to_url)s" |
29 |
TITLE="%(subject_html)s">%(email_html)s |
30 |
</A><BR> |
31 |
<I>%(datestr_html)s</I> |