mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
3a311ed5ec
Originally contributed by Brian Sniffen [1]. Quite a few unpublished fixes from Daniel Kahn Gilmour. We've been running it a few years now as the "official" archive of the notmuch mailing list. There also a few fixes from myself and Austin Ray. Finally I converted it to the new python bindings. This commit squashes the several years of development history and moves it under devel, in recognition of the now established role it plays in the project infrastructure. [1]: id:87tvyvp4f2.fsf@istari.evenmere.org
15 lines
479 B
HTML
15 lines
479 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
{% set headers = ['Subject', 'Date'] %}
|
|
{% set addr_headers = ['To', 'Cc', 'From'] %}
|
|
{% for header in headers: %}
|
|
<p><b>{{header}}:</b>{{m.header(header)|e}}</p>
|
|
{% endfor %}
|
|
{% for header in addr_headers: %}
|
|
<p><b>{{header}}:</b>{{mailto_addrs(m,header)|safe}}</p>
|
|
{% endfor %}
|
|
<hr>
|
|
{% for part in format_message(m,mid): %}{{ part|safe }}{% endfor %}
|
|
{% for b in thread_nav(m): %}{{b|safe}}{% endfor %}
|
|
<hr>
|
|
{% endblock content %}
|