5 Apr
2023
5 Apr
'23
2:39 p.m.
It seems I found an easy enough hack.
On Wed, 5 Apr 2023, at 01:34, Andreas Schamanek wrote:
I tried to dig deeper and realized that on my test list "<" and ">" are only mangled when they surround email addresses as e.g. in
<user@example.net> (ie. < user @ example . net >) (...) whereas my Hyperkitty [1.3.4] shows them as
<user(a)example.net>
This is related to the flag "escapeemaillinks" in templates/hyperkitty/messages/message.html
The function that handles it is escapeemaillinks() in templatetags/hk_generic.py (at line 111 in my version).
Adding .replace("&","&")
to the return value fixes the rendering
of email addresses (at least for me).
-- -- Andreas
:-)