-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
167 lines (142 loc) · 5.92 KB
/
index.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Groupware server software">
<meta name="theme-color" content="#ffffff">
<meta property="og:site_name" content="Gromox project homepage">
<meta property="og:url" content="https://gromox.com/">
<meta property="og:locale" content="en_US">
<meta property="og:title" content="Gromox project page">
<meta property="og:description" content="Groupware server software">
<meta property="og:image" content="https://gromox.com/favicon-120x120.png">
<meta property="og:type" content="website">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/favicon-144x144.png">
<link rel="apple-touch-icon" sizes="57x57" href="favicon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="favicon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="favicon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="favicon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="favicon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="favicon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="favicon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<title>Gromox project webpage</title>
<style>
@font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 400;
src: url(va9E4kDNxMZdWfMOD5Vvl4jL.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
font-display: swap;
}
@font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 700;
src: url(va9B4kDNxMZdWfMOD5VnLK3eRhf6.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
font-display: swap;
}
body {
font-family: "Fira Sans", sans-serif;
margin: 0;
display: flex;
flex-wrap: wrap;
background-color: #b8b8c8;
}
h1 { font-weight: bold; font-size: 36pt; color: #303030; }
p { font-size: 16pt; }
img { border: 0; }
header { padding: 2em; }
main { max-width: 64em; padding: 2em; }
a, a[download] { font-family: monospace; }
ul > li > a, #latest a { font-family: "Fira Sans", sans-serif; }
#latest { display: block; text-align: center; }
#latest a {
display: inline-block;
text-decoration: none;
background-color: #00cc00;
box-shadow: -0.1em -0.3em 0.5em #008000 inset;
color: #000000;
border-radius: 0.5em;
margin: 1em 2.2em;
padding: 0.4em 4em;
}
#latest span {
display: block;
font-size: 200%;
}
@media (prefers-color-scheme: dark) {
body { color: #eee; background: #121212; }
h1 { color: #a2a2a2; }
a { color: #809fff; }
}
</style>
</head>
<body>
<header>
<!-- birds seem to be a recurring theme in mail software, just following suit -->
<p><img src="mascot.svg" width="120" height="120" alt="Gromox brand character"></p>
</header>
<main>
<h1>Welcome to the Gromox project webpage</h1>
<p>Gromox is the central groupware server component of grommunio. It is capable
of serving as a drop-in replacement for Microsoft Exchange.
Connectivity options include RPC/HTTP (Outlook Anywhere), MAPI/HTTP, IMAP,
POP3, an SMTP-speaking LDA, and a PHP module with a MAPI function subset.
Components can scale-out over multiple hosts.</p>
<p>Gromox is modular and consists of a set of components and programs to
provide its feature set. This repository includes a number of manual pages, for
which a rendered version is at <a
href="https://docs.grommunio.com/man/gromox.7.html">docs.grommunio.com</a>.</p>
<p>Gromox relies on other components to provide a sensibly complete mail
system,</p>
<ul>
<li><a href="https://github.com/grommunio/admin-api">Admin API/CLI</a> (AAPI)
and, optionally, <a href="https://github.com/grommunio/admin-web">Admin Web
Interface</a> (AWEB) for user management</li>
<li>a mail transfer agent like Postfx, Exim, and more</li>
<li>mail security solutions like rspamd and others (commercial ones
included)</li>
<li>optionally, User Web Interface via <a
href="https://github.com/grommunio/grommunio-web">grommunio-web</a></li>
<li>optionally, Exchange ActiveSync (EAS)/mobile device support
via <a
href="https://github.com/grommunio/grommunio-sync">grommunio-sync</a></li>
<li>optionally, CalDAV & CardDAV interoperability via
<a href="https://github.com/grommunio/grommunio-dav">grommunio-dav</a></li>
</ul>
<p>The grommunio Appliance ships these essentials and has a ready-to-run
installation of Gromox.</p>
<p>Support is available through grommunio GmbH and its partners. See <a
href="https://grommunio.com/">grommunio.com</a> for details.
A community forum is at <a
href="https://community.grommunio.com/">community.grommunio.com</a>.</p>
<p>The source code repository and technical issue tracker can be found at <a
href="https://github.com/grommunio/gromox">https://github.com/grommunio/gromox</a>.</p>
<div id="latest">
<a download
href="https://github.com/grommunio/gromox/releases/download/gromox-2.37/gromox-2.37.tar.zst">
Latest Release
<span>2.37 ⬇</span>
</a>
</div>
<h2>Downloads</h2>
<ul>
<li><a download
href="https://github.com/grommunio/gromox/releases/download/gromox-2.37/gromox-2.37.tar.zst">gromox-2.37.tar.zst</a>
(<a download
href="https://github.com/grommunio/gromox/releases/download/gromox-2.37/gromox-2.37.tar.asc">.asc</a>)</li>
</ul>
</main>
</body>
</html>