Bug #14174
closedExtra Message Boundary
0%
Description
The boundary after "$this->constructHTML_media($boundary);" in t3lib_htmlmail::constructHTML() is extra. This causes SPAM filters to add a point or two to scores due to non-matching message boundaries.
Commenting it out resolves the problems.
// $this->add_message("--".$boundary."--\n");
Before:
...
X-Spam-Status: No, hits=3.3 required=5.0 tests=BAYES_44,MIME_BASE64_LATIN,
MIME_BASE64_TEXT,MIME_MISSING_BOUNDARY autolearn=no version=2.63
....
YW1pbHk6IFZlcmRhbmEsIEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7Cglmb250LXdlaWdo
dDogYm9sZDsKCWZvbnQtc2l6ZTogNDhweDsKCXRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7Cn0K
I3RpbWJ1cm5zIC5zdHlsZTExIHtmb250LXNpemU6IDY1cHh9Cg==
------------part_1_40a8df6a6aa9e--
------------part_1_40a8df6a6aa9e--
After:
X-Spam-Status: No, hits=1.5 required=5.0 tests=BAYES_44,MIME_BASE64_LATIN,
MIME_BASE64_TEXT autolearn=no version=2.63
...
X-Spam-Status: No, hits=1.5 required=5.0 tests=BAYES_44,MIME_BASE64_LATIN,
MIME_BASE64_TEXT autolearn=no version=2.63
(issue imported from #M102)
Files