Thomas Bruederli
2014-08-14 64599448608f16e093b1fd21492052b64ad2a939
Don't read attachment contents from cache when downloading. Cache might have line endings converted
1 files modified
2 ■■■ changed files
program/steps/mail/get.inc 2 ●●● patch | view | raw | blame | history
program/steps/mail/get.inc
@@ -354,7 +354,7 @@
            }
            // send part as-it-is
            else {
                if ($part->body) {
                if ($part->body && empty($plugin['download'])) {
                    header("Content-Length: " . strlen($part->body));
                    echo $part->body;
                    $sent = true;