about summary refs log tree commit diff
path: root/src/formbox.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/formbox.py')
-rw-r--r--src/formbox.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/formbox.py b/src/formbox.py
index 5e30faf..beb9246 100644
--- a/src/formbox.py
+++ b/src/formbox.py
@@ -77,7 +77,8 @@ def render(template, archive, parent):
         # Please don't have space in email addresses
         author = ' '.join(decode(self['From'])).rsplit(maxsplit=1)[0]
         rendered_children = render(template, archive, message_id)
-        yield template.format(message_id=quote(message_id),
+        yield template.format(in_reply_to=quote(parent),
+                              message_id=quote(message_id),
                               mailto_params=urlencode(dict(reply_to(self))),
                               date=date(self).isoformat(), author=author,
                               body=body, children='\n'.join(rendered_children))