diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-21 14:18:31 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-21 14:19:30 +0100 |
commit | 6345f34565e0922640b9ce1543b8d3d8a3e131d2 (patch) | |
tree | 4191ab46e52ff4a50ace4d45209bcf2a0dab5ab5 | |
parent | a16cbb204e52cbbdad24ef7361fc11a859413e31 (diff) |
Fix issue where msgexport.sh printed the message to STDOUT instead of a file (#1489634)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rwxr-xr-x | bin/msgexport.sh | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -8,6 +8,7 @@ CHANGELOG Roundcube Webmail - Fix security issue in DomainFactory driver of Password plugin - Fix invalid X-Draft-Info on forwarded message draft (#1489587) - Fix regression in handling of 'attachments' result in message_compose hook (#1489627) +- Fix issue where msgexport.sh printed the message to STDOUT instead of a file (#1489634) RELEASE 1.0-rc -------------- diff --git a/bin/msgexport.sh b/bin/msgexport.sh index e98e5fee2..f68688b67 100755 --- a/bin/msgexport.sh +++ b/bin/msgexport.sh @@ -58,7 +58,7 @@ function export_mailbox($mbox, $filename) $from = current(rcube_mime::decode_address_list($headers->from, 1, false)); fwrite($out, sprintf("From %s %s UID %d\n", $from['mailto'], $headers->date, $headers->uid)); - fwrite($out, $IMAP->print_raw_body($headers->uid)); + $IMAP->get_raw_body($headers->uid, $out); fwrite($out, "\n\n\n"); progress_update($i+1, $count); |