This thread contains a patchset. You're looking at the original emails,
but you may wish to use the patch review UI.
Review patch {{icon('caret-right')}}
{% endif %}
{% macro display_message(msg) %}
{% set stripped_subject =
msg.subject[4:] if (msg.subject
.upper().startswith("RE: ")) else msg.subject %}
{% if msg == thread %}
{% if msg.nreplies > 0 %}
{{icon("reply")}} {{msg.nreplies}}
{% endif %}
{% if msg.nparticipants > 1 %}
{{icon("user")}} {{msg.nparticipants}}
{% endif %}
{{ msg.subject }}
{% elif stripped_subject != thread.subject %}
{{ msg.subject }}
{% endif %}
{% set from_hdr = msg.parsed()['From'] %}
{% set from = parseaddr(from_hdr) %}
{% if msg.sender != None %}
{{from[0]}}
{% else %}
{{from[0]}}
{% endif %}
<{{ from[1] }}>
{% set dkim_status, dkim_explain =
parse_auth_result(msg.parsed(), "dkim") %}
Details