Home » Networking » Net_Sieve » Bug #9305
TLS enabled if useTLS = false
Details
| Submitted | 2006-11-11 11:56 UTC |
|---|---|
| From | tilman at apfelfabrik dot de |
| Assigned | amistry |
| Status | Closed |
| Package | Net_Sieve |
| PHP Version | 5.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.