Thomas Bruederli
2014-08-14 2d284df861ed0d0da5e9c36c437c32ba8fbf6e68
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
@@ -356,7 +356,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;