-
-
Notifications
You must be signed in to change notification settings - Fork 661
/
haraka.js
79 lines (64 loc) · 2.04 KB
/
haraka.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env node
'use strict';
const path = require('path');
const makePathJoin = () => path.join(process.env.HARAKA, 'node_modules');
if (!process.env.HARAKA) {
console.warn("WARNING: Not running installed Haraka - command line arguments ignored")
}
// this must be set before "server.js" is loaded
process.env.HARAKA = process.env.HARAKA || path.resolve('.');
try {
require.paths.push(makePathJoin());
}
catch (e) {
process.env.NODE_PATH = process.env.NODE_PATH ?
(`${process.env.NODE_PATH}:${makePathJoin()}`) :
(makePathJoin());
require('module')._initPaths(); // Horrible hack
}
const utils = require('haraka-utils');
const logger = require('./logger');
const server = require('./server');
exports.version = utils.getVersion(__dirname)
process.on('uncaughtException', err => {
if (err.stack) {
err.stack.split("\n").forEach(line => logger.crit(line));
}
else {
logger.crit(`Caught exception: ${JSON.stringify(err)}`);
}
logger.dump_and_exit(1);
});
let shutting_down = false;
const signals = ['SIGINT'];
if (process.pid === 1) signals.push('SIGTERM')
for (const sig of signals) {
process.on(sig, () => {
if (shutting_down) return process.exit(1);
shutting_down = true;
const [, filename] = process.argv;
process.title = path.basename(filename, '.js');
logger.notice(`${sig} received`);
logger.dump_and_exit(() => {
if (server.cluster?.isMaster) {
server.performShutdown();
}
else if (!server.cluster) {
server.performShutdown();
}
});
});
}
process.on('SIGHUP', () => {
logger.notice('Flushing the temp fail queue');
server.flushQueue();
});
process.on('exit', code => {
if (shutting_down) return;
const [, filename] = process.argv;
process.title = path.basename(filename, '.js');
logger.notice('Shutting down');
logger.dump_logs();
});
logger.log('NOTICE', `Starting up Haraka version ${exports.version}`);
server.createServer();