t r
Results
2
comments of
t r
I'm seeing the same issue (attempting to parse two bodies at the same time). I've debugged it enough to know that Parser._resUntagged regex is picking up the latter BODY[1.MIME] {76}...
@mscdex The following fixes the issue, but is it legit? Parser.prototype._resUntagged = function() { var m = RE_BODYLITERAL.exec(this._buffer); var body = /BODY[(.*)] /i.exec(this._buffer) if (m && (!body || m.index <...