mailtrain/zone-mta/plugins/mailtrain-main.js

20 lines
343 B
JavaScript
Raw Normal View History

2018-12-16 21:44:50 +00:00
'use strict';
// Set module title
module.exports.title = 'Mailtrain integration (main)';
// Initialize the module
module.exports.init = (app, done) => {
process.send({
type: 'zone-mta-started'
});
process.on('message', msg => {
if (msg === 'exit') {
process.exit(); }
});
2018-12-16 21:44:50 +00:00
done();
};