forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 3
/
transaction.js
203 lines (176 loc) · 6.41 KB
/
transaction.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
'use strict';
// An SMTP Transaction
// node.js built-in modules
const util = require('util');
// haraka npm modules
const config = require('haraka-config');
const Notes = require('haraka-notes');
const utils = require('haraka-utils');
// Haraka modules
const Header = require('./mailheader').Header;
const body = require('./mailbody');
const MessageStream = require('./messagestream');
const MAX_HEADER_LINES = config.get('max_header_lines') || 1000;
class Transaction {
constructor () {
this.uuid = null;
this.mail_from = null;
this.rcpt_to = [];
this.header_lines = [];
this.data_lines = [];
this.attachment_start_hooks = [];
this.banner = null;
this.body_filters = [];
this.data_bytes = 0;
this.header_pos = 0;
this.found_hb_sep = false;
this.body = null;
this.parse_body = false;
this.notes = new Notes();
this.header = new Header();
this.message_stream = null;
this.discard_data = false;
this.resetting = false;
this.rcpt_count = {
accept: 0,
tempfail: 0,
reject: 0,
}
this.msg_status = undefined;
this.data_post_start = null;
this.data_post_delay = 0;
this.encoding = 'utf8';
this.mime_part_count = 0;
}
ensure_body () {
if (this.body) return;
this.body = new body.Body(this.header);
this.body.on('mime_boundary', m => this.incr_mime_count());
this.attachment_start_hooks.forEach(h => {
this.body.on('attachment_start', h);
});
if (this.banner) {
this.body.set_banner(this.banner);
}
for (const o of this.body_filters) {
this.body.add_filter((ct, enc, buf) => {
const re_match = (util.isRegExp(o.ct_match) && o.ct_match.test(ct.toLowerCase()));
const ct_begins = ct.toLowerCase().indexOf(String(o.ct_match).toLowerCase()) === 0;
if (re_match || ct_begins) return o.filter(ct, enc, buf);
})
}
}
add_data (line) {
if (typeof line === 'string') { // This shouldn't ever happen.
line = Buffer.from(line, this.encoding);
}
// is this the end of headers line?
if (this.header_pos === 0 &&
(line[0] === 0x0A || (line[0] === 0x0D && line[1] === 0x0A))) {
this.header.parse(this.header_lines);
this.header_pos = this.header_lines.length;
this.found_hb_sep = true;
if (this.parse_body) this.ensure_body();
}
else if (this.header_pos === 0) {
// Build up headers
if (this.header_lines.length < MAX_HEADER_LINES) {
if (line[0] === 0x2E) line = line.slice(1); // Strip leading '.'
this.header_lines.push(line.toString(this.encoding).replace(/\r\n$/, '\n'));
}
}
else if (this.header_pos && this.parse_body) {
let new_line = line;
if (new_line[0] === 0x2E) new_line = new_line.slice(1); // Strip leading "."
new_line = this.body.parse_more(new_line.toString(this.encoding).replace(/\r\n$/, '\n'));
if (!new_line.length) return; // buffering for banners
}
if (!this.discard_data) this.message_stream.add_line(line);
}
end_data (cb) {
if (!this.found_hb_sep && this.header_lines.length) {
// Headers not parsed yet - must be a busted email
// Strategy: Find the first line that doesn't look like a header.
// Treat anything before that as headers, anything after as body.
let header_pos = 0;
for (let i = 0; i < this.header_lines.length; i++) {
// Anything that doesn't match a header or continuation
if (!/^(?:([^\s:]*):\s*([\s\S]*)$|[ \t])/.test(this.header_lines[i])) {
break;
}
header_pos = i;
}
const body_lines = this.header_lines.splice(header_pos + 1);
this.header.parse(this.header_lines);
this.header_pos = header_pos;
if (this.parse_body) {
this.ensure_body();
for (let j = 0; j < body_lines.length; j++) {
this.body.parse_more(body_lines[j]);
}
}
}
if (this.header_pos && this.parse_body) {
let data = this.body.parse_end();
if (data.length) {
data = data.toString(this.encoding)
.replace(/^\./gm, '..')
.replace(/\r?\n/gm, '\r\n');
const line = Buffer.from(data, this.encoding);
this.body.force_end();
if (!this.discard_data) this.message_stream.add_line(line);
}
}
if (this.discard_data) {
cb();
}
else {
this.message_stream.add_line_end(cb);
}
}
add_header (key, value) {
this.header.add_end(key, value);
if (this.header_pos > 0) this.reset_headers();
}
add_leading_header (key, value) {
this.header.add(key, value);
if (this.header_pos > 0) this.reset_headers();
}
reset_headers () {
const header_lines = this.header.lines();
this.header_pos = header_lines.length;
}
remove_header (key) {
this.header.remove(key);
if (this.header_pos > 0) this.reset_headers();
}
attachment_hooks (start, data, end) {
this.parse_body = true;
this.attachment_start_hooks.push(start);
}
set_banner (text, html) {
// throw "transaction.set_banner is currently non-functional";
this.parse_body = true;
if (!html) {
html = text.replace(/\n/g, '<br/>\n');
}
this.banner = [text, html];
}
add_body_filter (ct_match, filter) {
this.parse_body = true;
this.body_filters.push({ ct_match, filter });
}
incr_mime_count (line) {
this.mime_part_count++;
}
}
exports.Transaction = Transaction;
exports.MAX_HEADER_LINES = MAX_HEADER_LINES;
exports.createTransaction = uuid => {
const t = new Transaction();
t.uuid = uuid || utils.uuid();
// Initialize MessageStream here to pass in the UUID
t.message_stream = new MessageStream(
config.get('smtp.ini'), t.uuid, t.header.header_list);
return t;
}