diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-20 14:17:33 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-20 14:17:33 +0200 |
commit | d76472314240f3a3c7f2a2e771df791fbe019337 (patch) | |
tree | 1102528e31ee9e49477c3ca5766eabb592bf9760 /program/lib/Roundcube/rcube_imap.php | |
parent | b200258d5af08ff24065d58c96d8ccf834d1ffad (diff) |
Improve IMAP APPEND handling so it can read message (parts) from file pointer(s)
and make it less memory consuming
Diffstat (limited to 'program/lib/Roundcube/rcube_imap.php')
-rw-r--r-- | program/lib/Roundcube/rcube_imap.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php index 3ca8a07c9..d65f6afab 100644 --- a/program/lib/Roundcube/rcube_imap.php +++ b/program/lib/Roundcube/rcube_imap.php @@ -2243,13 +2243,14 @@ class rcube_imap extends rcube_storage /** * Append a mail message (source) to a specific folder * - * @param string $folder Target folder - * @param string $message The message source string or filename - * @param string $headers Headers string if $message contains only the body - * @param boolean $is_file True if $message is a filename - * @param array $flags Message flags - * @param mixed $date Message internal date - * @param bool $binary Enables BINARY append + * @param string $folder Target folder + * @param string|array $message The message source string or filename + * or array (of strings and file pointers) + * @param string $headers Headers string if $message contains only the body + * @param boolean $is_file True if $message is a filename + * @param array $flags Message flags + * @param mixed $date Message internal date + * @param bool $binary Enables BINARY append * * @return int|bool Appended message UID or True on success, False on error */ |