PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Networking » Net_Sieve » Bug #9305

TLS enabled if useTLS = false

Details

Submitted2006-11-11 11:56 UTC
Fromtilman at apfelfabrik dot de
Assignedamistry
StatusClosed
PackageNet_Sieve
PHP Version5.1.2
Roadmaps(Not assigned)

Comments

[2006-11-11 11:56 UTC] tilman at apfelfabrik dot de

Description:
------------
There seems to be a wrong if statement for enabling TLS in connect():

- if($useTLS === false) {
+ if($useTLS === true) {
// check if we can enable TLS via STARTTLS

[2006-12-22 00:00 UTC] amistry at php dot net

Are you sure you're using 1.1.5?
if($useTLS === true) {
Is the code that is currently in 1.1.5.

[2006-12-22 09:29 UTC] tilman at apfelfabrik dot de

My fault. Everything is fine.