summaryrefslogtreecommitdiff
path: root/templates/webmail/about.html.ep
blob: 6221bcc8f987f56684c661de316d2cfdd414ec94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
%# about template

% layout 'mainlayout';

<div class="jwm-base">

  <div class="jwm-post">

    <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>

    <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>

    <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>
           

    <p>
    <h3>Supported languages</h3>
    <ul>
% foreach (@$languages) {
    <li>
      %= link_to $_ => {lang => $_}
    </li>
% }
    </ul>
    </p>

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

  </div>

  <nav>
    %= link_to login => 'login' => (class => 'pure-button')
  </nav>

</div>