From 2c6fa9337154b1a70325066f1c87a163e3dadfa1 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Thu, 21 Aug 2008 15:47:35 -0400
Subject: [PATCH] - Add Content-Length header while attachments downloading (#1484256)

---
 CHANGELOG                  |    8 ++++++++
 program/steps/mail/get.inc |    1 +
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 76f20ad..8f34632 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,14 @@
 CHANGELOG RoundCube Webmail
 ---------------------------
 
+2008/08/21 (alec)
+----------
+- Add Content-Length header while attachments downloading (#1484256)
+- Fix In-Reply-To and References headers when composing saved draft 
+  message (#1485288)
+- Removed PHP4 class constructors
+- Fix html message charset conversion for charsets with underline (#1485287) 
+
 2008/08/21 (estadtherr)
 ----------
 - Fix escaping of To: and From: fields when building message body for reply
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc
index 842c605..2265834 100644
--- a/program/steps/mail/get.inc
+++ b/program/steps/mail/get.inc
@@ -100,6 +100,7 @@
       $OUTPUT->write(rcmail_print_body($part, array('safe' => $MESSAGE->is_safe, 'inline_html' => false)));
     }
     else {
+      header(sprintf('Content-Length: %d', $part->size));
       header(sprintf('Content-Disposition: %s; filename="%s";',
                      $_GET['_download'] ? 'attachment' : 'inline',
                      $part->filename ? abbreviate_string($part->filename, 55) : "roundcube.$ctype_secondary"));

--
Gitblit v1.9.1