Merge branch 'master' into rework/configuration

This commit is contained in:
H. Lehmann 2019-11-23 10:41:10 +01:00 committed by GitHub
commit e281fbf1a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -7,6 +7,12 @@ ChangeLog
* Changed to YAML configuration files
* Minor configuration improvements
0.6.1 (2019-11-13)
------------------
* Fixed sync issues with Thunderbird
* Ships with sabre/dav 4.0.2
0.6.0 (2019-08-25)
------------------

View file

@ -200,7 +200,8 @@ class Server {
if ($e instanceof \Sabre\DAV\Exception\NotAuthenticated) {
// Applications may make their first call without auth so don't log these attempts
// Pattern from sabre/dav/lib/DAV/Auth/Backend/AbstractDigest.php
if (strpos($e->getMessage(), "No 'Authorization: Digest' header found.") === false) {
if (strpos($e->getMessage(), "No 'Authorization: Digest' header found.") === false
&& strpos($e->getMessage(), "No 'Authorization: Basic' header found.") === false) {
error_log('user not authorized: Baikal DAV: ' . $e->getMessage());
}
} else {