Author Topic: Table messages  (Read 3392 times)

Offline joancasti

  • Jr. Member
  • **
  • Posts: 10
Table messages
« on: April 04, 2015, 03:22:47 PM »
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
Be your own true friend

Offline GO3LIN

  • Newbie
  • *
  • Posts: 8
Re: Table messages
« Reply #1 on: April 14, 2015, 10:13:18 AM »
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:

Code: [Select]
// 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;