From 64599448608f16e093b1fd21492052b64ad2a939 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Thu, 14 Aug 2014 09:22:05 -0400 Subject: [PATCH] Don't read attachment contents from cache when downloading. Cache might have line endings converted --- program/steps/mail/get.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc index 02d57c7..b260d2c 100644 --- a/program/steps/mail/get.inc +++ b/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; -- Gitblit v1.9.1