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:18:31 +0100 |
commit | 17ae1307d6eaeca451e54c7a81780d0bceeaf5fd (patch) | |
tree | dfe556ca3401182edf096747e32361dd0eace6be /bin/msgexport.sh | |
parent | 128fd9861a2fa755c4684c2700eb6197cb0be484 (diff) |
Fix issue where msgexport.sh printed the message to STDOUT instead of a file (#1489634)
Diffstat (limited to 'bin/msgexport.sh')
-rwxr-xr-x | bin/msgexport.sh | 2 |
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); |