Skip to content
Snippets Groups Projects
Commit 19587409 authored by Guilhem Moulin's avatar Guilhem Moulin
Browse files

Update upstream source from tag 'upstream/1.11.1'

Update to upstream version '1.11.1'
with Debian dir 21bce1af9130f958839e46e66a10dfb1efb9fbeb
parents fbc51f8e 499c5ab6
Branches
Tags
No related merge requests found
File moved
......@@ -835,8 +835,10 @@ class Net_SMTP
*/
protected function authDigestMD5($uid, $pwd, $authz = '')
{
/* TODO trigger deprecation error in 2.0.0 and remove authDigestMD5() in 3.0.0
trigger_error(__CLASS__ . ' (' . $this->host . '): Authentication method DIGEST-MD5' .
' is no longer secure and should be avoided.', E_USER_DEPRECATED);
*/
if (PEAR::isError($error = $this->put('AUTH', 'DIGEST-MD5'))) {
return $error;
......@@ -890,8 +892,10 @@ class Net_SMTP
*/
protected function authCRAMMD5($uid, $pwd, $authz = '')
{
/* TODO trigger deprecation error in 2.0.0 and remove authCRAMMD5() in 3.0.0
trigger_error(__CLASS__ . ' (' . $this->host . '): Authentication method CRAM-MD5' .
' is no longer secure and should be avoided.', E_USER_DEPRECATED);
*/
if (PEAR::isError($error = $this->put('AUTH', 'CRAM-MD5'))) {
return $error;
......@@ -933,8 +937,10 @@ class Net_SMTP
*/
protected function authLogin($uid, $pwd, $authz = '')
{
/* TODO trigger deprecation error in 2.0.0 and remove authLogin() in 3.0.0
trigger_error(__CLASS__ . ' (' . $this->host . '): Authentication method LOGIN' .
' is no longer secure and should be avoided.', E_USER_DEPRECATED);
*/
if (PEAR::isError($error = $this->put('AUTH', 'LOGIN'))) {
return $error;
......
File moved
File moved
File moved
......@@ -22,10 +22,10 @@
<email>schengawegga@gmail.com</email>
<active>yes</active>
</lead>
<date>2023-10-23</date>
<time>05:30:29</time>
<date>2023-11-01</date>
<time>20:28:37</time>
<version>
<release>1.11.0</release>
<release>1.11.1</release>
<api>1.4.0</api>
</version>
<stability>
......@@ -34,13 +34,7 @@
</stability>
<license uri="https://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
<notes>
* BugFix: SMTP: STARTTLS failed (code: 220, response: 2.0.0 Ready to start TLS #74
* Feature: Add SCRAM-SHA-1, SCRAM-SHA-224, SCRAM-SHA-256, SCRAM-SHA-384 and SCRAM-SHA-512 support (#76)
* Task: Mark authentication methods CRAM-MD5, DIGEST-MD5, LOGIN and PLAIN as DEPRECATED with deprecation warnings in the error-log (#76)
* BugFix: SMTP: STARTTLS failed (code: 220, response: 2.0.0 Ready to start TLS) (#74)
* BugFix: Issue with non-blocking streams on establishing STARTTLS encryption (#74)
* BugFix: Implement TLS1.3 on STARTTLS encryption (#74)
* BugFix: using implode() instead of join() (#74)
* BugFix: Triggering deprecation warnings in error-log causes system failures because of changing the behavior in error reporting (#76)
</notes>
<contents>
<dir baseinstalldir="/" name="/">
......@@ -51,7 +45,7 @@
<file baseinstalldir="/" md5sum="251b60ee6d99c297535444b890094a4b" name="tests/quotedata.phpt" role="test" />
<file baseinstalldir="/" md5sum="0967a9b61018b51934da5e410dc6b161" name="LICENSE" role="doc" />
<file baseinstalldir="/" md5sum="ed3b64bd5af34ca29f97d3a8beb1b526" name="README.rst" role="doc" />
<file baseinstalldir="/" md5sum="0217c27782fca4fd13ac2c33eb845797" name="Net/SMTP.php" role="php" />
<file baseinstalldir="/" md5sum="5a15b7b362b63fe0d1388734c73a23ab" name="Net/SMTP.php" role="php" />
</dir>
</contents>
<dependencies>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment