Skip to content

Commit

Permalink
Merge pull request #447 from ADDISON74/master
Browse files Browse the repository at this point in the history
Added TLS v1.3 protocol
  • Loading branch information
develart-projects authored Oct 8, 2024
2 parents 459a61f + 203c483 commit 601e1ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Mail/Protocol/Smtp.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public function helo($host = '127.0.0.1')
if (!stream_socket_enable_crypto(
$this->_socket,
true,
STREAM_CRYPTO_METHOD_TLS_CLIENT|STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT|STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT
STREAM_CRYPTO_METHOD_TLS_CLIENT|STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT|STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT|STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT
)) {
/**
* @see Zend_Mail_Protocol_Exception
Expand Down

0 comments on commit 601e1ba

Please sign in to comment.