summaryrefslogtreecommitdiff
path: root/program/lib/Net
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-12-06 21:37:37 +0000
committerthomascube <thomas@roundcube.net>2006-12-06 21:37:37 +0000
commitb517af4a471283adc62ef82cb30b97e896bb6799 (patch)
tree615ba4f02d3e1c3a193f7e2dfcf0d608c14aa7e3 /program/lib/Net
parentb25766b1b3b37d31f74c8b6bf320b07107917a8d (diff)
Optimized memory usage when sending mail; Include SMTP response in log; Fixed wrong header encoding
Diffstat (limited to 'program/lib/Net')
-rw-r--r--program/lib/Net/SMTP.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/program/lib/Net/SMTP.php b/program/lib/Net/SMTP.php
index 4a29f4d0a..bda1494d8 100644
--- a/program/lib/Net/SMTP.php
+++ b/program/lib/Net/SMTP.php
@@ -760,7 +760,7 @@ class Net_SMTP
* @access public
* @since 1.0
*/
- function data($data)
+ function data(&$data)
{
/* RFC 1870, section 3, subsection 3 states "a value of zero
* indicates that no fixed maximum message size is in force".
@@ -784,7 +784,8 @@ class Net_SMTP
return $error;
}
- if (PEAR::isError($result = $this->_send($data . "\r\n.\r\n"))) {
+ $data .= "\r\n.\r\n";
+ if (PEAR::isError($result = $this->_send($data))) {
return $result;
}
if (PEAR::isError($error = $this->_parseResponse(250))) {