mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-03-05 04:13:08 +08:00
12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
// home many modifications to cache before writing
|
|
BULK_BATCH_SIZE: 150,
|
|
|
|
// how often to clear expired messages
|
|
GC_INTERVAL: 10 * 60 * 1000,
|
|
|
|
// artificail delay between deleting next expired message in ms
|
|
GC_DELAY_DELETE: 100
|
|
};
|