File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 22### Unreleased
33
44
5+ ### [ 1.1.0] - 2022-06-23
6+
7+ - fix: boundary marker corruption issue haraka/Haraka #3068
8+
9+
10+
511## 1.0.0 - 2022-06-23
612
713- Import from Haraka
814- convert tests to mocha
915
16+ [ 1.1.0 ] : https://github.com/haraka/message-stream/releases/tag/1.1.0
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ class MessageStream extends Stream {
292292 this . read_ce . fill ( line ) ;
293293 }
294294 // Check for data left in the buffer
295- if ( buf . length > 0 ) {
295+ if ( buf . length > 0 && this . headers_found_eoh ) {
296296 this . read_ce . fill ( buf ) ;
297297 }
298298 }
Original file line number Diff line number Diff line change 11{
22 "name" : " haraka-message-stream" ,
3- "version" : " 1.0 .0" ,
3+ "version" : " 1.1 .0" ,
44 "description" : " Haraka message stream library" ,
55 "main" : " index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments