{% extends 'mainlayout.html' %}

{% block content %}
<div class="section container">

  <article class=content>

    <h1>About JWebmail {{ version }}</h1>

    <p>
      JWebmail {{ version }} is a Webmail solution meant to be used with
      <a href="https://www.fehcom.de/sqmail/sqmail.html">s/qmail</a>
    </p>

    <h3>Features</h3>
    <ul>
      <!--
        <li>qmail, vmailmgr and vpopmail authentication support (<em>not</em> sendmail)</li>
        <li>multiple signatures und headers support</li>
        <li>basic folders support (4 defined folders)</li>
        <li>featured addressbook</li>
        <li>reads the mail directely from the server disk, without need for POP3 or IMAP</li>
      -->
      <li>100% Maildir based</li>
      <li>multiple language support</li>
      <li>session management </li>
      <li>search for mails</li>
      <li>CGI support but also wsgi and fcgi</li>
    </ul>

    <p>
      This is a
      <a href="http://www.gnu.org/copyleft/gpl.html" target="_new">GPL</a>
      licensed project, created by <a href="mailto:">Olivier 'omnis' Müller</a>
      and currently maintained by
      <a href="mailto:jannis@fehcom.de">Jannis M. Hoffmann</a>
    </p>

    <h3>Supported languages</h3>
    <ul>
{% for lang in languages %}
    <li>
      {% if lang == get_locale() %}
        <a href="{{ url_for('about', lang_code=lang.language) }}"><strong>{{ get_locale().languages[lang.language] }}</strong></a>
      {% else %}
        <a href="{{ url_for('about', lang_code=lang.language) }}">{{ get_locale().languages[lang.language] }}</a>
      {% endif %}
    </li>
{% endfor %}
    </ul>

    <p>
      JWebmail is programmed in <a href="http://www.python.org">Python</a>, and is
      a complete rewrite of oMail-webmail.
    </p>

  </article>

  <nav class=navbar>
    <div class=navbar-item>
      <a href="{{ url_for('login') }}" class="button">{% trans %}Login{% endtrans %}</a>
    </div>
  </nav>

</div>
{% endblock %}