You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<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><ahref="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 <ahref="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 <ahref="#intro" rel="tab">design and how it works</a></li>
<li>Read the <ahref="#docs" rel="tab">documentation</a> and configure your instance</li>
150
+
<li>Join the <ahref="#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 — Version <ahref="https://github.com/elasticinbox/elasticinbox-java/releases/tag/0.4.0">0.4.0</a> released.</li>
157
+
<li>06 Dec 2011 — 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 <ahref="https://github.com/elasticinbox/elasticinbox/blob/master/LICENSE" target="_blank">BSD license</a>.</p>
<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>
<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>
<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>
<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 <ahref="#docs" rel="tab">roadmap</a> for the full list of planned features.</p>
196
+
</div>
197
+
<divid="docs" class="page">
198
+
<h3>Internals</h3>
199
+
<p>
200
+
<ul>
201
+
<li><ahref="https://github.com/elasticinbox/elasticinbox/wiki/Data-Model">Data Model</a> for metadata (Cassandra)</li>
202
+
<li><ahref="https://github.com/elasticinbox/elasticinbox/wiki/Labels-and-Markers">Labels and Markers</a> are used instead of Folders and Flags</li>
<p>The source code is available on <ahref="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:
0 commit comments