From 1204fc152749c41f7fb4092aa006132dfa051aa9 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Fri, 14 Jan 2011 18:41:44 +0000 Subject: [PATCH] - Fixed Bug #18109: New "pipelining" parameter for SMTP backend never used git-svn-id: http://svn.php.net/repository/pear/packages/Mail/trunk@307484 c90b9560-bf6c-de11-be94-00142212c4b1 --- Mail/smtp.php | 3 ++- package.xml | 23 ++++++++++------------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/Mail/smtp.php b/Mail/smtp.php index 2fea52d..e9e7dea 100644 --- a/Mail/smtp.php +++ b/Mail/smtp.php @@ -348,7 +348,8 @@ function &getSMTPObject() include_once 'Net/SMTP.php'; $this->_smtp = &new Net_SMTP($this->host, $this->port, - $this->localhost); + $this->localhost, + $this->pipelining); /* If we still don't have an SMTP object at this point, fail. */ if (is_object($this->_smtp) === false) { diff --git a/package.xml b/package.xml index 5a355da..b97da62 100644 --- a/package.xml +++ b/package.xml @@ -16,10 +16,16 @@ richard@phpguru.org yes - 2010-03-01 - + + Aleksander Machniak + alec + alec@alec.pl + yes + + + - 1.2.0 + 1.2.1 1.2.0 @@ -28,16 +34,7 @@ BSD Style -QA release - stable. - -Updated minimum dependencies (Net_SMTP, PEAR, PHP) -Doc Bug #15620 Licence change to BSD -Bug #13659 Mail parse error in special condition -Bug #16200 - Security hole allow to read/write Arbitrary File -_hasUnclosedQuotes() doesn't properly handle a double slash before an end quote (slusarz@curecanti.org, Bug #9137). -Make sure Net_SMTP is defined when calling getSMTPObject() directly (slusarz@curecanti.org, Bug #13772). -Add addServiceExtensionParameter() to the SMTP driver (slusarz@curecanti.org, Bug #13764). -Add a method to obtain the Net_SMTP object from the SMTP driver (slusarz@curecanti.org, Bug #13766). +Fixed Bug #18109: New "pipelining" parameter for SMTP backend never used [alec]