From 2d284df861ed0d0da5e9c36c437c32ba8fbf6e68 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Thu, 14 Aug 2014 15:22:05 +0200 Subject: Don't read attachment contents from cache when downloading. Cache might have line endings converted --- program/steps/mail/get.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/steps') diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc index 8f869c67c..b10a052d6 100644 --- a/program/steps/mail/get.inc +++ b/program/steps/mail/get.inc @@ -356,7 +356,7 @@ else if (strlen($part_id)) { } // 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; -- cgit v1.2.3