diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-08-15 15:42:41 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-08-15 15:42:41 +0200 |
commit | 957ac142e3c80db3b86df4f0db3b82cfa8856206 (patch) | |
tree | 4edca8dbfac73407ed66985f47288df0a1d7bee7 /program/include/rcube_imap.php | |
parent | 13969cf5406c14ba5dd5f830d7a8e2e2134e244b (diff) | |
parent | 38ea9af1e685aeb89b5823e59ccd2c8fb481162c (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 461ecb0d2..5dd9c1250 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -2138,14 +2138,17 @@ class rcube_imap extends rcube_storage /** * Sends the whole message source to stdout + * + * @param int $uid Message UID + * @param bool $formatted Enables line-ending formatting */ - public function print_raw_body($uid) + public function print_raw_body($uid, $formatted = true) { if (!$this->check_connection()) { return; } - $this->conn->handlePartBody($this->folder, $uid, true, NULL, NULL, true); + $this->conn->handlePartBody($this->folder, $uid, true, null, null, true, null, $formatted); } |