It is helpfull for users if the notify-email for subscribed threads
contains the author of the new reply.
I added this with this one-liner:
{{{
Index: forum/views.py
===================================================================
--- forum/views.py (revision 54)
+++ forum/views.py (working copy)
@@ -145,6 +145,7 @@
mail_tpl = loader.get_template('forum/notify.txt')
c = Context({
'body': wordwrap(striptags(body), 72),
+ 'author': request.user,
'site' : Site.objects.get_current(),
'thread': t,
})
}}}