Paul de Rosanbo
Paul de Rosanbo
I have found nothing in the code, the correct value to set in config is `config.mongodb.prefix` maybe there is something to set on the mongodb server side? have you tested...
can you try with `config.mongodb.init = false` this will disable some code with specific database access. This should work if your db is correctly initialized with the install.js script
Hello, Yes, if you used the install.js command to create the database, you need to set the config.mongodb.init to FALSE in the config.js file because your database is already initialized...
from your screenshot, i think the javascript/html is not loading correctly. in your config.js, the url setting should look like this: config.url = 'http://127.0.0.1:3000/';
@dependabot rebase
neat idea, there is a python lib : https://docs.python.org/3/library/mailbox.html#maildir probably a lot of work since this is not the same interface as the remote mailbox api from imaplib
hum, the main problem is that python 3 is not supported. I think the best answer to this would be to rewrite for P3 only in a new branch and...
now master branch is for python3 only
Hi, no I did not try this feature yet, i don't know if this can be faster
The emails are stored using the email as folder name, this should prevent duplication the remote_folder is used in select method from imaplib, you can use this example: https://stackoverflow.com/questions/33684770/python-imap4-select-mailbox-name-contain-space-character-error?rq=1 the...