summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates/about.html
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
commit2cf2a68bd1c25d8fe4f3126f40bd57982cc6b2a4 (patch)
treeb5c8ed0e1cfe8eac311829296a9aca062bb1abc1 /src/jwebmail/templates/about.html
initial commit
Diffstat (limited to 'src/jwebmail/templates/about.html')
-rw-r--r--src/jwebmail/templates/about.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/jwebmail/templates/about.html b/src/jwebmail/templates/about.html
new file mode 100644
index 0000000..e197275
--- /dev/null
+++ b/src/jwebmail/templates/about.html
@@ -0,0 +1,62 @@
+{% 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>100% Maildir based</li>
+ <li>reads the mail directely from the server disk, without need for POP3 or IMAP</li>
+ -->
+ <li>multiple language support</li>
+ <li>session management </li>
+ <li>search for mails</li>
+ <li>CGI support but also psgi/plack 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:">Oliver '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>
+ {{ get_locale().languages[lang.language] }}
+ </li>
+{% endfor %}
+ </ul>
+
+ <p>
+ JWebmail is programmed in <a href="http://www.perl.org">Perl</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 %}