Hello.
I would use roundcube with a imap-server. So there is probably 6000 or 7000 users on this server.
I've read the source, and i don't understand why the table messages record messages logs, i fear that the interaction with MySQL make working hard the server. Can i modify the code about message recording without break dependancies ?
Thanks
Hello,
In roundcube there's no table for messages. There's only cache_messages, where are stored the messages for cache. This option can be disabled in the config.inc.php file with this line:
// Enables messages cache. Only 'db' cache is supported.
// This requires an IMAP server that supports QRESYNC and CONDSTORE
// extensions (RFC7162). See synchronize() in program/lib/Roundcube/rcube_imap_cache.php
// for further info, or if you experience syncing problems.
$config['messages_cache'] = false;