summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-02-21 14:18:31 +0100
committerAleksander Machniak <alec@alec.pl>2014-02-21 14:19:30 +0100
commit6345f34565e0922640b9ce1543b8d3d8a3e131d2 (patch)
tree4191ab46e52ff4a50ace4d45209bcf2a0dab5ab5 /bin
parenta16cbb204e52cbbdad24ef7361fc11a859413e31 (diff)
Fix issue where msgexport.sh printed the message to STDOUT instead of a file (#1489634)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/msgexport.sh2
1 files changed, 1 insertions, 1 deletions
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);