Fixes in reports (generating a CSV).

Added caching of generated images in mosaico handler.
Various other fixes.
This commit is contained in:
Tomas Bures 2019-04-22 02:41:40 +02:00
parent 055c4c6b51
commit 66702b5edc
39 changed files with 545 additions and 278 deletions

View file

@ -7,6 +7,7 @@ const {MailerError} = require('../lib/mailers');
const campaigns = require('../models/campaigns');
const contextHelpers = require('../lib/context-helpers');
const {SubscriptionStatus} = require('../../shared/lists');
const bluebird = require('bluebird');
const BounceHandler = require('bounce-handler').BounceHandler;
const SMTPServer = require('smtp-server').SMTPServer;
@ -85,7 +86,7 @@ const server = new SMTPServer({
onData: onData
});
module.exports = callback => {
function spawn(callback) {
if (!config.verp.enabled) {
return setImmediate(callback);
}
@ -131,7 +132,7 @@ module.exports = callback => {
started = true;
return setImmediate(callback);
}
let host = hosts[pos++];
const host = hosts[pos++];
server.listen(config.verp.port, host, () => {
if (started) {
return server.close();
@ -142,4 +143,6 @@ module.exports = callback => {
};
startNextHost();
};
}
module.exports.spawn = bluebird.promisify(spawn);