wildduck/README.md

113 lines
4.9 KiB
Markdown
Raw Normal View History

2017-03-06 05:45:50 +08:00
# Wild Duck Mail Agent
2017-03-06 22:29:25 +08:00
![](https://cldup.com/qlZnwOz0na.jpg)
2017-03-06 05:45:50 +08:00
This is a very early preview of an IMAP server built with Node.js and MongoDB.
### Goals of the Project
1. Build a scalable IMAP server that uses clustered database instead of single machine file system as mail store
2. Push notifications. Your application (eg. a webmail client) should be able to request changes (new and deleted messages, flag changes) to be pushed to client instead of using IMAP to fetch stuff from the server
2017-03-08 02:08:59 +08:00
3. Provide Gmail-like features like pushing sent messages automatically to Sent Mail folder or notifying about messages moved to Junk folder so these could be marked as spam
2017-03-06 05:45:50 +08:00
2017-03-08 02:08:59 +08:00
### Supported features
2017-03-06 22:24:57 +08:00
2017-03-08 02:08:59 +08:00
Wild Duck IMAP server supports the following IMAP standards:
2017-03-06 22:31:49 +08:00
2017-03-08 02:08:59 +08:00
* The entire IMAP4rev1 suite with some minor differences from the spec. Intentionally missing is the `\Recent` flag as it does not provide any real value, only makes things more complicated. RENAME works a bit differently than spec describes.
* IDLE
* CONDSTORE (except metadata stuff)
* STARTTLS
* UNSELECT
* UIDPLUS
* SPECIAL-USE
### FAQ
**Does it work?**
Yes, it does. You can run the server and get a working IMAP server for mail store, LMTP and/or SMTP servers for pushing messages to the mail store and HTTP API server to create new users. All handled by Node.js and MongoDB, no additional dependencies needed.
**Isn't it bad to use a database as a mail store?**
Yes, historically it has been considered a bad practice to store emails in a database. And for a good reason. The data model of relational databases like MySQL does not work well with tree like structures (email mime tree) or large blobs (email source).
Notice the word "relational"? In fact documents stores like MongoDB work very well with emails. Document store is great for storing tree-like structures and while GridFS is not as good as "real" object storage, it is good enough for storing the raw parts of the message.
**Is the server scalable?**
Not yet. These are some actions that must be done:
2017-03-06 22:24:57 +08:00
2017-03-06 22:35:14 +08:00
1. Separate attachments from indexed mime tree and store these to GridFS. Currently entire message is loaded whenever a FETCH or SEARCH call is made (unless body needs not to be touched, for example if only FLAGs are checked). This also means that the message size is currently limited. MongoDB database records are capped at 16MB and this should contain also the metadata for the message.
2017-03-06 22:24:57 +08:00
2. Optimize SEARCH queries to use MongoDB queries. Currently only simple stuff (flag, internaldate, not flag, modseq) is included in query and more complex comparisons are handled by the application but this means that too much data must be loaded from database (unless it is a very simple query like "SEARCH UNSEEN" that is already optimized)
3. Optimize FETCH queries to load only partial data for BODY subparts
4. Build a publish-subscribe solution to notify changes process-wide (and server-wide). Currently update notifications are propagated only inside the same process (journaled update data is available from DB for everybody but the notification that there is new data is not propagated outside current process).
2017-03-06 22:35:14 +08:00
5. Parse incoming message into the mime tree as a stream. Currently the entire message is buffered in memory before being parsed.
2017-03-06 22:24:57 +08:00
2017-03-06 05:45:50 +08:00
## Usage
2017-03-06 22:39:00 +08:00
**Step 1.** Get the code from github
2017-03-06 05:45:50 +08:00
2017-03-06 22:39:00 +08:00
$ git clone git://github.com/wildduck-email/wildduck.git
$ cd wildduck
2017-03-06 05:45:50 +08:00
2017-03-06 22:39:00 +08:00
**Step 2.** Install dependencies
2017-03-06 05:45:50 +08:00
$ npm install
2017-03-06 22:24:57 +08:00
2017-03-06 22:39:00 +08:00
**Step 3.** Modify [config file](./config/default.js)
**Step 4.** Run the [index queries](./indexes.js) in MongoDB (optional, the app would work without it as indexes only become relevant once you have more than few messages stored)
**Step 5.** Run the server
2017-03-06 05:45:50 +08:00
npm start
2017-03-06 22:39:00 +08:00
**Step 6.** Create an user account (see [below](#create-user))
2017-03-06 22:13:40 +08:00
## Create user
Users can be created with HTTP requests
### POST /user/create
Arguments
* **username** is an email address of the user
* **password** is the password for the user
**Example**
```
curl -XPOST "http://localhost:8080/user/create" -H 'content-type: application/json' -d '{
"username": "username@example.com",
"password": "secretpass"
}'
```
The response for successful operation should look like this:
```json
{
"success": true,
"id": "58bd6815dddb5ac5063d3590",
"username": "username@example.com"
}
```
After you have created an user you can use these credentials to log in to the IMAP server. Additionally the LMTP server starts accepting mail for this email address.
## Testing
Create an email account and use your IMAP client to connect to it. To send mail to this account, run the example script:
```
node examples/push.mail.js username@example.com
```
2017-03-07 00:27:56 +08:00
This should "deliver" a new message to the INBOX of *username@example.com* by using the built-in SMTP maildrop interface. If your email client is connected then you should promptly see the new message.
2017-03-06 05:45:50 +08:00
## License
Wild Duck Mail Agent is licensed under the [European Union Public License 1.1](http://ec.europa.eu/idabc/eupl.html).