summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_storage.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2015-03-08 10:51:19 +0100
committerAleksander Machniak <alec@alec.pl>2015-03-08 10:51:19 +0100
commit9af8e22b8ea3bd4fe9e05860058d7fce29019455 (patch)
tree649a010858db57f89e4b448ca71a59d66ee0fc1a /program/lib/Roundcube/rcube_storage.php
parent7ff227eb3eda915bf40a596f7ab727e3d0e0861b (diff)
Plugin API: added message_part_body hook, fixes around message structure handling by plugins
Diffstat (limited to 'program/lib/Roundcube/rcube_storage.php')
-rw-r--r--program/lib/Roundcube/rcube_storage.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/program/lib/Roundcube/rcube_storage.php b/program/lib/Roundcube/rcube_storage.php
index ccb28c680..23e65770d 100644
--- a/program/lib/Roundcube/rcube_storage.php
+++ b/program/lib/Roundcube/rcube_storage.php
@@ -492,22 +492,24 @@ abstract class rcube_storage
/**
* Returns the whole message source as string (or saves to a file)
*
- * @param int $uid Message UID
- * @param resource $fp File pointer to save the message
+ * @param int $uid Message UID
+ * @param resource $fp File pointer to save the message
+ * @param string $part Optional message part ID
*
* @return string Message source string
*/
- abstract function get_raw_body($uid, $fp = null);
+ abstract function get_raw_body($uid, $fp = null, $part = null);
/**
* Returns the message headers as string
*
- * @param int $uid Message UID
+ * @param int $uid Message UID
+ * @param string $part Optional message part ID
*
* @return string Message headers string
*/
- abstract function get_raw_headers($uid);
+ abstract function get_raw_headers($uid, $part = null);
/**