Thomas Bruederli
2014-08-14 03443ef416224a57f64610e3baa1c6f3627af9c4
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
@@ -334,7 +334,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;