diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-24 21:02:27 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-24 21:02:27 +0000 |
| commit | 5816625cc300075c43c6ef43a200dd35e1b8257d (patch) | |
| tree | a4f12097b60ac7b0919052d1677738711eac3989 /roundcubemail/program | |
| parent | 73ee59cff7f37705e8131e85232060fb7ba8f525 (diff) | |
Optimized memory usage when sending a message
git-svn-id: https://svn.roundcube.net/trunk@57 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/include/rcube_smtp.inc | 2 | ||||
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 | ||||
| -rw-r--r-- | roundcubemail/program/lib/imap.inc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/include/rcube_smtp.inc b/roundcubemail/program/include/rcube_smtp.inc index 5cea00697..e5691759c 100644 --- a/roundcubemail/program/include/rcube_smtp.inc +++ b/roundcubemail/program/include/rcube_smtp.inc @@ -49,7 +49,7 @@ $SMTP_CONN = null; * @return bool Returns TRUE on success, or FALSE on error * @access public */ -function smtp_mail($from, $recipients, $headers, $body) +function smtp_mail($from, $recipients, $headers, &$body) { global $SMTP_CONN, $CONFIG, $SMTP_ERROR; $smtp_timeout = null; diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 2b9a50f96..7179898d8 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -1,4 +1,4 @@ -/* +/* +-----------------------------------------------------------------------+ | RoundCube Webmail Client Script | | | diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index fc5ff09d7..7f4c93a60 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -1885,7 +1885,7 @@ function iil_C_DeleteFolder(&$conn, $folder){ } } -function iil_C_Append(&$conn, $folder, $message){ +function iil_C_Append(&$conn, $folder, &$message){ if (!$folder) return false; $fp = $conn->fp; |
