Updated README

This commit is contained in:
Andris Reinman 2017-03-10 23:32:44 +02:00
parent 1766528645
commit 3bbda81491

View file

@ -36,7 +36,7 @@ Yes, it does. You can run the server and get a working IMAP server for mail stor
1. Start as many instances as you want. You can start multiple Wild Duck instances in different machines and as long as they share the same MongoDB and Redis settings, users can connect to any instances. This is very different from more traditional IMAP servers where a single user always needs to connect (or proxied) to the same IMAP server. Wild Duck keeps all required state information in MongoDB, so it does not matter which IMAP instance you use.
2. Super easy to tweak. The entire codebase is pure JavaScript, so there's nothing to compile or anything platform specific. If you need to tweak something then change the code, restart the app and you're ready to go. If it works on one machine then most probably it works in every other machine as well.
3. Works on Windows. At least if you get MongoDB and [Redis](https://github.com/MSOpenTech/redis) running first.
3. Works almost on any OS including Windows. At least if you get MongoDB and Redis ([Windows fork](https://github.com/MSOpenTech/redis)) running first.
### Isn't it bad to use a database as a mail store?