Skip to content

Commit

Permalink
[mms] Added direct TLS v1.x connection option when connecting to remo…
Browse files Browse the repository at this point in the history
…te server.
  • Loading branch information
slusarz committed Oct 30, 2013
1 parent b85caaa commit f35742f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 6 additions & 0 deletions framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING
Expand Up @@ -14,6 +14,12 @@ This lists the API changes between releases of the package.
Upgrading to 2.16.0
===================

- Horde_Imap_Client_Base

- Constructor

Added 'tlsv1' option for the 'secure' configuration parameter.

- Horde_Imap_Client_Password_Xoauth2

Added class to abstract production of the necessary token for XOAUTH2 SASL
Expand Down
8 changes: 6 additions & 2 deletions framework/Imap_Client/lib/Horde/Imap/Client/Base.php
Expand Up @@ -251,8 +251,12 @@ abstract class Horde_Imap_Client_Base implements Serializable
* <li>'ssl' (Auto-detect SSL version)</li>
* <li>'sslv2' (Force SSL version 3)</li>
* <li>'sslv3' (Force SSL version 2)</li>
* <li>'tls' (TLS)</li>
* <li>true (TLS if available/necessary) [since 2.15.0]</li>
* <li>'tls' (TLS; started via protocol-level negotation over
* unencrypted channel; RECOMMENDED way of initiating secure
* connection)
* <li>'tlsv1' (TLS direct version 1.x connection to server) [@since
* 2.16.0]</li>
* <li>true (TLS if available/necessary) [@since 2.15.0]</li>
* </ul>
* DEFAULT: false</li>
* </li>
Expand Down
4 changes: 3 additions & 1 deletion framework/Imap_Client/package.xml
Expand Up @@ -21,6 +21,7 @@
</stability>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
* [mms] Added direct TLS v1.x connection option when connecting to remote server.
* [mms] Use SHA-1 instead of MD5 for internal hashing.
* [mms] Correctly handle untagged BAD IMAP responses.
* [mms] Added Horde_Imap_Client_Password_Xoauth2 class.
Expand Down Expand Up @@ -293,7 +294,7 @@
<package>
<name>Horde_Socket_Client</name>
<channel>pear.horde.org</channel>
<min>1.0.0</min>
<min>1.1.0</min>
<max>2.0.0alpha1</max>
<exclude>2.0.0alpha1</exclude>
</package>
Expand Down Expand Up @@ -2056,6 +2057,7 @@
<date>2013-10-25</date>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
* [mms] Added direct TLS v1.x connection option when connecting to remote server.
* [mms] Use SHA-1 instead of MD5 for internal hashing.
* [mms] Correctly handle untagged BAD IMAP responses.
* [mms] Added Horde_Imap_Client_Password_Xoauth2 class.
Expand Down

0 comments on commit f35742f

Please sign in to comment.