1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-03-03 14:52:27 +02:00
eXtremeSHOK a37a8e3b2a
Fix for large Mailboxes to avoid timeouts
** I agree to the code of conduct and the contributory guidelines **

Tested with 80+GB single inbox via imap

``` --nofoldersizes --skipsize --fast ``` file and folder sizes are only used for statistics, which are completely useless. Before the actual data is transfered the message and folder sizes need to be calculated on a 200 000+ message inbox, this will almost never complete.

``` --buffersize 8192000 ``` sets the io buffer to 8mb, the default buffer is 4kbyte, this is speeds up syncs.

```  --skipheader 'X-*' ``` X headers vary wildly from system to system and do not ensure message uniqueness, they are not needed.

```  --split1 3000 --split2 3000 ```    split the requests in several parts on the server, 3000 is the number of messages handled per request.

``` --fastio1 --fastio2 ``` use fastio
2018-02-14 13:27:30 +02:00
..
2016-12-09 20:39:02 +01:00
2016-12-17 10:07:07 +01:00
2016-12-09 20:39:02 +01:00
2018-01-21 15:00:05 +01:00
2018-01-29 14:42:51 +01:00
2017-06-18 20:57:26 +02:00