Skip to content

Commit

Permalink
- Fixed Bug #18109: New "pipelining" parameter for SMTP backend never…
Browse files Browse the repository at this point in the history
… used

git-svn-id: http://svn.php.net/repository/pear/packages/Mail/trunk@307484 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Aleksander Machniak committed Jan 14, 2011
1 parent 6b6be3d commit 1204fc1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
3 changes: 2 additions & 1 deletion Mail/smtp.php
Expand Up @@ -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) {
Expand Down
23 changes: 10 additions & 13 deletions package.xml
Expand Up @@ -16,10 +16,16 @@
<email>richard@phpguru.org</email>
<active>yes</active>
</developer>
<date>2010-03-01</date>
<time>22:16:48</time>
<developer>
<name>Aleksander Machniak</name>
<user>alec</user>
<email>alec@alec.pl</email>
<active>yes</active>
</developer>
<date></date>
<time></time>
<version>
<release>1.2.0</release>
<release>1.2.1</release>
<api>1.2.0</api>
</version>
<stability>
Expand All @@ -28,16 +34,7 @@
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
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&apos;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]
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down

0 comments on commit 1204fc1

Please sign in to comment.