Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open source JMAP compliant servers?

I'm exploring the possibility of building a centrally hosted email client, embedded within my site. Users would be provisioned a new email address from me, they are not using their existing email. Essentially, I'm looking for the feature set of an email web client (multiple user accounts, get inbox messages, read, delete, compose new, organize, etc) exposed as set of RESTful APIs. A brief web search uncovered very little meeting my desires, but I did come across http://jmap.io. I was unable to find an existing implementation of the specification that I could leverage for my solution, and would love to avoid writing my own. Are there any existing solutions (JMAP or otherwise) that might meet my needs? I've ruled out https://context.io/ because I cannot have the emails stored or consumed by a third party.

like image 690
Jeff Wiedemann Avatar asked Sep 17 '25 00:09

Jeff Wiedemann


1 Answers

I'm actively contributing to the Apache James Server. As part of my work, I am working on a JMAP implementation with my co-workers.

So far, we are able to build a working web-mail on top of it in one of our company product, OpenPaas.

And as it is an Apache project, it is OpenSource. Maybe you want to have a look...

https://github.com/apache/james-project/tree/master/server/protocols/jmap

http://james.apache.org/

like image 131
Benwa Avatar answered Sep 21 '25 10:09

Benwa