forked from cypht-org/cypht-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
features.html
139 lines (138 loc) · 7.16 KB
/
features.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Features</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="img/icon.ico">
<link rel="stylesheet" href="site.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="img/logo.svg" width="120" height="60" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span onclick="document.getElementsByClassName('navbar-collapse')[0].style.display = 'block';" class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse " id="navbarSupportedContent">
<ul class="navbar-nav ml-lg-auto">
<li class="nav-item ">
<a class="nav-link" href="index.html">Home </a>
</li>
<li class="nav-item active">
<a class="nav-link " href="features.html">Features<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="security.html">Security</a>
</li>
<li class="nav-item">
<a class="nav-link" href="modules.html">Mods</a>
</li>
<li class="nav-item">
<a class="nav-link" href="license.html">License</a>
</li>
<li class="nav-item">
<a class="nav-link" href="tests.html">Test</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://unencumberedbyfacts.com/">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="content-section container">
<h2>List of Features</h2>
<hr>
<ul>
<li>
Combined inbox, unread, sent, and flagged message views for all your E-mail accounts (and
RSS feeds), as well as standard E-mail client folder navigation
</li>
<hr>
<li>
Flexible profiles to combine IMAP accounts with SMTP accounts and setup signatures and
reply-to details
</li>
<hr>
<li>
Search all your E-mail accounts and RSS feeds at once with a simple form., or do complex searches across your accounts with the advanced search module set
</li>
<hr>
<li>
Compose messages in plain text, HTML, or Markdown
</li>
<hr>
<li>
Pages are comprised of only 3 HTTP requests totaling ~50KB (gzipped). Data to
populate a page from different sources is collected with parallel AJAX
requests. Output is validated HTML5 and local storage (session only) is used to
cache content for speedier reloads. All the little interface icons use
data-urls so they are served inline (and they can all be disabled). With
standard browser caching, pages tend to transfer 10 to 20 KB
</li>
<hr>
<li>
Simple interface translation system that does not use gettext or .po files, just
arrays of translated strings defined in PHP. Right to left languages are supported.
</li>
<hr>
<li>
Module sets for IMAP, POP3, SMTP, LDAP or local contacts, WordPress, Github,
and lots more! Check out the <a href="modules.html">Modules</a> page for a
complete list
</li>
<hr>
<li>
Sessions and user data can be stored in any PDO compatible database or flat
files on the server
</li>
<hr>
<li>
Authentication is flexible and currently supports POP3, IMAP, LDAP, an included
database schema, dynamic authentication using popular E-mail providers,
auto-discovery based on the user's E-mail domain, or you can roll your own with
the site module set
</li>
<hr>
<li>
Sessions and Authentication can be customized without breaking any modules using
the site module set
</li>
<hr>
<li>
On the server, page request processing peaks at around 4-5MB of memory. The module system only includes PHP files required to process the
current request, so time is not wasted parsing unused code paths
</li>
<hr>
<li>
All the work of processing a request and providing a response is done with
module sets. The application framework manages module assignment and provides a
controlled execution environment, but modules are where the actual work is done
</li>
<hr>
<li>
There is a build process that pre-calculates module assignments and combines
and compresses page assets, making the production version of your site as fast
as possible. There is also a developer mode in which individual components are
included directly for easy debugging and module development
</li>
<hr>
<li>
The HTML5 Page structure is semantic and simple, with attention paid to
accessibility best-practices
</li>
</ul>
<hr>
</section>
</body>
</html>