diff options
author | alecpl <alec@alec.pl> | 2008-08-21 19:47:35 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-08-21 19:47:35 +0000 |
commit | 2c6fa9337154b1a70325066f1c87a163e3dadfa1 (patch) | |
tree | 390b94ec8692b4e1895ad170fcea28fb08bb3315 /program/steps/mail | |
parent | 5cfe194f489605223d90903acd7336a16036f6ca (diff) |
- Add Content-Length header while attachments downloading (#1484256)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/get.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc index 842c60536..22658346e 100644 --- a/program/steps/mail/get.inc +++ b/program/steps/mail/get.inc @@ -100,6 +100,7 @@ else if ($pid = get_input_value('_part', RCUBE_INPUT_GET)) { $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")); |