Merge branch 'master' into rework/configuration
This commit is contained in:
commit
e281fbf1a0
2 changed files with 8 additions and 1 deletions
|
@ -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)
|
||||
------------------
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue