Matt Sergeant
Matt Sergeant
Fixes #2325 - maybe - hard to test Changes proposed in this pull request: - Delete qfiles on timeout There might be other ways this can timeout than the ways...
Everyone seems to stumble when processing mail body text with Haraka. The problem is Haraka presents a raw version of the MIME structure tree to the developer. Most people just...
Replaces and closes #27
What I most often end up doing is the following: ``` var bufflist = []; response.on('data', function (chunk) { bufflist.push(chunk) }); response.on('end', function () { var buf = buffertools.concat.apply(buffertools, bufflist);...