Commit 73b96571 authored by Sebastian Kummer's avatar Sebastian Kummer

ZP-916 Log message when account is hidden.

Released under the Affero GNU General Public License (AGPL) version 3.
parent d7271a85
...@@ -290,7 +290,7 @@ class Kopano extends SyncWorker { ...@@ -290,7 +290,7 @@ class Kopano extends SyncWorker {
foreach ($gabentries as $entry) { foreach ($gabentries as $entry) {
// ignore hidden entries // ignore hidden entries
if (isset($entry[PR_EC_AB_HIDDEN]) && $entry[PR_EC_AB_HIDDEN]) { if (isset($entry[PR_EC_AB_HIDDEN]) && $entry[PR_EC_AB_HIDDEN]) {
echo "------------hidden: ". $entry[PR_ACCOUNT]."\n"; $this->Log(sprintf("Kopano->GetGAB(): Ignoring user '%s' as account is hidden", $entry[PR_ACCOUNT]));
continue; continue;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment