Skip to content

Commit 63d5549

Browse files
committed
Archived website
0 parents  commit 63d5549

File tree

5 files changed

+278
-0
lines changed

5 files changed

+278
-0
lines changed

elasticinbox-architecture.png

87.3 KB
Loading

elasticinbox-icon.png

958 Bytes
Loading

elasticinbox.png

5.12 KB
Loading

index.html

Lines changed: 278 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,278 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6+
<meta http-equiv="Cache-Control" content="no-cache">
7+
<meta http-equiv="Pragma" content="no-cache">
8+
<meta http-equiv="Expires" content="Mon, 22 Jul 2002 11:12:01 GMT">
9+
<link rel="shortcut icon" type="image/x-icon" href="elasticinbox.ico">
10+
<title>ElasticInbox - Scalable Email Store for Cloud</title>
11+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
12+
<script type="text/javascript">
13+
$(document).ready(function(){
14+
$('#tabs div.page').hide();
15+
$('#tabs div.page:first').show();
16+
$('#tabs ul.menu li:first').addClass('active');
17+
$('#tabs a[rel="tab"]').click(function(){
18+
$('#tabs ul li').removeClass('active');
19+
var currentTab = $(this).attr('href');
20+
$('a[href='+currentTab+']').parent().addClass('active');
21+
$('#tabs div.page').hide();
22+
$(currentTab).show();
23+
return false;
24+
});
25+
});
26+
</script>
27+
28+
<style type="text/css"><!--
29+
* {
30+
margin: 0;
31+
padding: 0;
32+
}
33+
body {
34+
background: #e8e7e7 url("pattern.gif") repeat;
35+
color: #333;
36+
font-family: Helvetica, Arial, Sans-Serif;
37+
}
38+
a, a:visited {
39+
color: #333377;
40+
}
41+
a:hover {
42+
text-decoration:underline;
43+
}
44+
#tabs {
45+
margin: 0;
46+
}
47+
#tabs ul.menu {
48+
width: 540px;
49+
}
50+
#tabs .menu li {
51+
text-shadow:0 1px #fff;
52+
margin-left: 10px;
53+
list-style: none;
54+
}
55+
* html #tabs .menu li {
56+
display: inline;
57+
}
58+
#tabs .menu li, #tabs .menu li a {
59+
float: left;
60+
}
61+
#tabs ul.menu li.active {
62+
border-top:2px #FFFF66 solid;
63+
background: rgba(255, 255, 255, 0.5);
64+
}
65+
#tabs ul.menu li.active a {
66+
color: #000;
67+
}
68+
#tabs ul.menu li a {
69+
text-decoration: none;
70+
padding: 8px;
71+
color: #000;
72+
font-weight: bold;
73+
}
74+
#tabs .page {
75+
min-height: 200px;
76+
padding: 30px;
77+
clear: both;
78+
margin-top: 10px;
79+
width:760px;
80+
text-align: left;
81+
font-size: 14px;
82+
background: rgba(255, 255, 255, 0.5);
83+
-moz-box-shadow: 3px 3px 3px #aaa;
84+
-webkit-box-shadow: 3px 3px 3px #aaa;
85+
box-shadow: 3px 3px 3px #aaa;
86+
}
87+
#tabs .page p {
88+
text-shadow:0 1px #fff;
89+
line-height: 150%;
90+
margin-bottom: 20px;
91+
}
92+
#tabs .page h3 {
93+
text-shadow:0 1px #fff;
94+
line-height: 150%;
95+
margin: 30px 0 20px 0;
96+
text-transform: uppercase;
97+
font-weight: bold;
98+
font-size: 14px;
99+
}
100+
#tabs .page ul {
101+
margin: 0 0 25px 50px;
102+
}
103+
#tabs .page li {
104+
text-shadow:0 1px #fff;
105+
line-height: 130%;
106+
margin: 0 0 8px 0;
107+
}
108+
#tabs .page pre {
109+
line-height: 150%;
110+
padding:10px 5px 10px 15px;
111+
margin: 0 0 0 50px;
112+
background: #777;
113+
color:#ffffee;
114+
font-size:13px;
115+
font-family: Consolas, "Courier New";
116+
-moz-border-radius: 10px;
117+
-webkit-border-radius: 10px;
118+
border-radius: 10px;
119+
width:600px;
120+
}
121+
--></style>
122+
</head>
123+
<body>
124+
<div align="center">
125+
<div id="header"><img src="elasticinbox.png" /></div>
126+
<div id="container">
127+
<div id="tabs" align="center">
128+
<ul class="menu">
129+
<li><a href="#home" rel="tab">Home</a></li>
130+
<li><a href="#intro" rel="tab">Introduction</a></li>
131+
<li><a href="#download" rel="tab">Download</a></li>
132+
<li><a href="#docs" rel="tab">Documentation</a></li>
133+
<li><a href="#contacts" rel="tab">Contacts</a></li>
134+
</ul>
135+
<div id="home" class="page">
136+
<p><b>ElasticInbox</b> is an open-source, reliable, distributed, scalable email store.</p>
137+
<p>The goal of this project is to provide a highly available email store without a single point of failure that can run on commodity hardware and scale linearly. ElasticInbox can easily scale to millions of mailboxes, with hundreds of thousands of messages in each mailbox.</p>
138+
<p>To achieve this, ElasticInbox relies on proven technologies:
139+
<ul>
140+
<li><a href="http://cassandra.apache.org/" target="_blank">Apache Cassandra</a> for metadata</li>
141+
<li>Cloud object (blob) store for messages. ElasticInbox supports all major private and public object stores like AWS S3 and OpenStack Object Store through the <a href="http://www.jclouds.org/" target="_blank">Jclouds library</a>.
142+
</ul>
143+
</p>
144+
<h3>Next steps</h3>
145+
<p>
146+
<ul>
147+
<li>Get familiar with ElasticInbox <a href="#intro" rel="tab">design and how it works</a></li>
148+
<li>Download <a href="#download" rel="tab">binary package</a></li>
149+
<li>Read the <a href="#docs" rel="tab">documentation</a> and configure your instance</li>
150+
<li>Join the <a href="#contacts" rel="tab">community</a> and contribute!</li>
151+
</ul>
152+
</p>
153+
<h3>News</h3>
154+
<p>
155+
<ul>
156+
<li>22 Sep 2013 &mdash; Version <a href="https://github.com/elasticinbox/elasticinbox-java/releases/tag/0.4.0">0.4.0</a> released.</li>
157+
<li>06 Dec 2011 &mdash; Initial version (0.2.0-SNAPSHOT) pushed to Github.</li>
158+
</ul>
159+
</p>
160+
<h3>License</h3>
161+
<p>ElasticInbox is an open-source project distributed under <a href="https://github.com/elasticinbox/elasticinbox/blob/master/LICENSE" target="_blank">BSD license</a>.</p>
162+
</div>
163+
<div id="intro" class="page">
164+
<div style="float:left">
165+
<div style="float:left; width:230px; margin-right:30px" align="justify">
166+
<h3>Elastic</h3>
167+
<p>The message read and write throughput <b>scales linearly</b> as more nodes are added.</p><p>Underlying components - Cassandra and Blob Stores also can scale linearly to thousands of nodes.</p>
168+
</div>
169+
<div style="float:left; width:230px; margin-right:30px" align="justify">
170+
<h3>Decentralized</h3>
171+
<p>ElasticInbox itself was designed with <b>"share-nothing"</b> architecture in mind where every node is independent. This means <b>no single point of failure</b>.</p><p>Cassandra and Blob Stores are also decentralized.</p>
172+
</div>
173+
<div style="float:right; width:230px;" align="justify">
174+
<h3>Fault-Tolerant</h3>
175+
<p>ElasticInbox stores information in Cassandra and Blob stores. Both technologies provide <b>automatic replication to multiple nodes</b>. Both support replication across multiple data centres. Failed nodes, whether it's ElasticInbox, Cassandra or Blob store, can be replaced with no downtime.</p>
176+
</div>
177+
</div>
178+
179+
<h3 style="clear:both">Architecture</h3>
180+
<p>The diagram below depicts high-level architecture:</p>
181+
<p align="center"><img src="elasticinbox-architecture.png" title="ElasticInbox Architecture" alt="ElasticInbox Architecture" /></p>
182+
<h3>Why ElasticInbox?</h3>
183+
<p>The typical email delivery process involves several components:</p>
184+
<ul>
185+
<li>Mail User Agent (MUA) - e.g. Mozilla Thunderbird, Microsoft Outlook</li>
186+
<li>Mail Transfer Agent (MTA) - e.g. Postfix, Exim</li>
187+
<li>Mail Delivery Agent (MDA) - ElasticInbox</li>
188+
<li>IMAP, POP3, and other interfaces to access mail</li>
189+
</ul>
190+
<p>MDA is responsible for storing messages. Most of the existing MDAs (or sometimes MTAs) store messages only on the locally mounted filesystem which is sufficient when you have a few thousands of accounts. However, when you need to serve millions of accounts, a local filesystem is not an option.
191+
</p>
192+
<h3>Solution</h3>
193+
<p>ElasticInbox MDA can serve millions of accounts and scale linearly - no bottlenecks, no single point of failure. Multiple replicas provide fault tolerance. This is a perfect solution for the cloud environment - just add more nodes as you grow. Messages are delivered over the standard LMTP protocol.</p>
194+
<p>In addition to MDA, ElasticInbox also supports RESTful APIs for managing, retrieving and storing messages. It provides an easy way for building web services (such as webmail, admin panel, etc.) on top of ElasticInbox.</p>
195+
<p>POP3 is supported for mailbox access and we also plan to add support for IMAP. See the <a href="#docs" rel="tab">roadmap</a> for the full list of planned features.</p>
196+
</div>
197+
<div id="docs" class="page">
198+
<h3>Internals</h3>
199+
<p>
200+
<ul>
201+
<li><a href="https://github.com/elasticinbox/elasticinbox/wiki/Data-Model">Data Model</a> for metadata (Cassandra)</li>
202+
<li><a href="https://github.com/elasticinbox/elasticinbox/wiki/Labels-and-Markers">Labels and Markers</a> are used instead of Folders and Flags</li>
203+
<li><a href="https://github.com/elasticinbox/elasticinbox-java/wiki/Blob-Storage">Blob storage</a></li>
204+
</ul>
205+
</p>
206+
<h3>APIs</h3>
207+
<p>
208+
<ul>
209+
<li><a href="https://github.com/elasticinbox/elasticinbox/wiki/LMTP-LDA">LMTP LDA</a></li>
210+
<li><a href="https://github.com/elasticinbox/elasticinbox/wiki/RESTful-API">RESTful API</a></li>
211+
<li><a href="https://github.com/elasticinbox/elasticinbox-java/wiki/POP3-and-IMAP">POP3 and IMAP</a></li>
212+
</ul>
213+
</p>
214+
<h3>Operations</h3>
215+
<p>
216+
<ul>
217+
<li>Installation (coming soon)</li>
218+
<li>Configuration (coming soon)</li>
219+
<li><a href="https://github.com/elasticinbox/elasticinbox/wiki/Monitoring">Monitoring</a></li>
220+
</ul>
221+
</p>
222+
<h3>Roadmap</h3>
223+
<p>
224+
<ul>
225+
<li>Native support for message threads</li>
226+
<li>Built-in filtering engine based on SIEVE protocol</li>
227+
<li>Built-in search engine</li>
228+
<li>IMAP support</li>
229+
</ul>
230+
</p>
231+
</div>
232+
<div id="download" class="page">
233+
<h3>Binary Package</h3>
234+
<p>Latest version is 0.4.0-SNAPSHOT (beta quality, although used in production):</p>
235+
<p><ul>
236+
<li><a href="https://github.com/elasticinbox/elasticinbox/releases/download/0.4.0/elasticinbox-0.4.0-bin.tar.gz">elasticinbox-0.4.0-SNAPSHOT-bin.tar.gz</a></li>
237+
</ul>
238+
</p>
239+
<h3>Requirements</h3>
240+
<ul>
241+
<li>Java >= 1.6</li>
242+
<li><a href="http://cassandra.apache.org/" target="_blank">Apache Cassandra</a> >= 0.8.0</li>
243+
</ul>
244+
<h3>Getting Source</h3>
245+
<p>The source code is available on <a href="https://github.com/elasticinbox/elasticinbox" target="_blank">GitHub</a>. Fork, make your changes and contribute. We accept pull requests.</p>
246+
<p>
247+
To build and run from the source you will need Maven 3 and Git:
248+
<pre>% git clone git://github.com/elasticinbox/elasticinbox.git elasticinbox
249+
% cd elasticinbox
250+
% mvn clean install pax:provision -DskipITs</pre>
251+
</p>
252+
</div>
253+
<div id="contacts" class="page">
254+
<h3>Mailing List</h3>
255+
<p>If you have questions regarding ElasticInbox functionality, configuration or operation, join the user mail list:
256+
<ul>
257+
<li><a href="http://groups.google.com/group/elasticinbox" target="_blank">groups.google.com/group/elasticinbox</a></li>
258+
<li><a href="mailto:[email protected]">[email protected]</a></li>
259+
</ul>
260+
</p>
261+
<h3>Stay Updated</h3>
262+
<p>Stay in touch, follow us on twitter and github:
263+
<ul>
264+
<li><a href="http://twitter.com/elasticinbox">@elasticinbox (Twitter)</a></li>
265+
<li><a href="https://github.com/elasticinbox">GitHub</a></li>
266+
</ul>
267+
</p>
268+
</div>
269+
</div>
270+
</div>
271+
<div style="margin:40px 0; font-size:0.8em; text-shadow:0 1px #fff;">
272+
<a href="http://twitter.com/elasticinbox" target="_blank">@elasticinbox</a>
273+
&nbsp; &#8226; &nbsp;
274+
<a href="https://github.com/elasticinbox/elasticinbox" target="_blank">github</a>
275+
</div>
276+
</div>
277+
</body>
278+
</html>

pattern.gif

96 Bytes
Loading

0 commit comments

Comments
 (0)