config | ||
examples | ||
imap-core | ||
.eslintrc | ||
.gitignore | ||
api.js | ||
Gruntfile.js | ||
imap-notifier.js | ||
imap.js | ||
indexes.js | ||
LICENSE | ||
lmtp.js | ||
package.json | ||
README.md | ||
server.js | ||
smtp.js |
Wild Duck Mail Agent
This is a very early preview of an IMAP server built with Node.js and MongoDB.
Goals of the Project
- Build a scalable IMAP server that uses clustered database instead of single machine file system as mail store
- 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
- 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
Supported features
Wild Duck IMAP server supports the following IMAP standards:
- 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 – notfies about new and deleted messages and also about flag updates
- CONDSTORE and ENABLE – supports most of the spec, except metadata stuff which is ignored
- STARTTLS
- NAMESPACE – minimal support, just lists the single user namespace with hierarchy separator
- UNSELECT
- UIDPLUS
- SPECIAL-USE
- ID
- AUTHENTICATE PLAIN and SASL-IR
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:
- 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.
- 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)
- Optimize FETCH queries to load only partial data for BODY subparts
- 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).
- Parse incoming message into the mime tree as a stream. Currently the entire message is buffered in memory before being parsed.
Usage
Step 1. Get the code from github
$ git clone git://github.com/wildduck-email/wildduck.git
$ cd wildduck
Step 2. Install dependencies
$ npm install
Step 3. Modify config file
Step 4. Run the index queries 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
npm start
Step 6. Create an user account (see below)
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:
{
"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
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.
License
Wild Duck Mail Agent is licensed under the European Union Public License 1.1.