Moin allerseits,
ich muss mich noch einmal mit einem Problem an Euch wenden. Es geht sicher nur um eine Einstellung irgendwo, aber ich bekomme das nicht hin.
Ausgangssituation: DS218+ mit der Kopano V.1.0.0beta und auf meinem PC Outlook 2013 in der aktuellsten Version mit der Kopano Outlook Extension v2.0.340. Die Sync-Verbindung ist hergestellt und funktioniert vordergründig auch.
Ich finde nur in meinem "z-push-error.log" viele, viele Male diese Warnrmeldung:
14/08/2019 10:10:22 [ 179] [WARN] [username] KopanoBackend->GetKoeGabBackendFolderId() Found 0 entries in the store 'SYSTEM' matching the name 'Z-Push-KOE-GAB'.
14/08/2019 10:11:09 [ 165] [WARN] [username] KopanoBackend->GetKoeGabBackendFolderId() Found 0 entries in the store 'SYSTEM' matching the name 'Z-Push-KOE-GAB'.
Bei [username] steht mein Kontoname drin; habe ich hier zum posten auf "username" geändert.
Diese Warnmeldung erscheint immer dann, wenn ich Outlook öffne. Es muss also etwas damit zu tun haben.
Nach meiner Google-Recherche habe ich in einem Kopano Threat folgendes gefunden:
I found the problem:
in /usr/share/zarafa-z-push/tools/gabsync.conf.php
define(USERNAME, ');
must be
define(USERNAME, SYSTEM);
Eine Datei "gabsync.conf.php" habe ich gefunden unter /etc/z-push/gabsync.conf.php. In dieser Datei stand wirklich nur "define(USERNAME, ');".
Das habe ich geändert in "define(USERNAME, SYSTEM);" Sie sieht jetzt so aus:
<?php
/***********************************************
* File : config.php
* Project : Z-Push - tools - GAB sync
* Descr : Configuration file.
*
* Created : 28.01.2016
*
* Copyright 2016 Zarafa Deutschland GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Consult LICENSE file for details
* ************************************************/
// The field to be hashed that is unique and never changes
// in the entire lifetime of the GAB entry.
define('HASHFIELD', 'account');
define('AMOUNT_OF_CHUNKS', 10);
// SyncWorker implementation to be used
define('SYNCWORKER', 'Kopano');
// Unique id to find a contact from the GAB (value to be supplied by -u on the command line)
// Zarafa supports: 'account' and 'smtpAddress' (email)
define('UNIQUEID', 'account');
// Server connection settings
// Depending on your setup, it might be advisable to change the lines below to one defined with your
// default socket location.
// Normally "default:" points to the default setting ("file:///var/run/kopano/server.sock")
// Examples: define("SERVER", "default:");
// define("SERVER", "http://localhost:236/kopano");
// define("SERVER", "https://localhost:237/kopano");
// define("SERVER", "file:///var/run/kopano/server.sock");
// If you are using ZCP >= 7.2.0, set it to the zarafa location, e.g.
// define("SERVER", "http://localhost:236/zarafa");
// define("SERVER", "https://localhost:237/zarafa");
// define("SERVER", "file:///var/run/zarafad/server.sock");
// For ZCP versions prior to 7.2.0 the socket location is different (http(s) sockets are the same):
// define("SERVER", "file:///var/run/zarafa");
define('SERVER', 'default:');
define('USERNAME', 'SYSTEM');
define('PASSWORD', '');
define('CERTIFICATE', null);
define('CERTIFICATE_PASSWORD', null);
// Store where the hidden folder is located.
// For the public folder, use SYSTEM
// to use another store, use the same as USERNAME
// or another store where USERNAME has full access to.
define('HIDDEN_FOLDERSTORE', 'SYSTEM');
/// Do not change (unless you know exactly what you do)
define('HIDDEN_FOLDERNAME', 'Z-Push-KOE-GAB');
Leider hat das mein Problem auch nicht gelöst. Meine Frage ist jetzt: Was bedeutet diese Warnmeldung und was muss ich wo, wie ändern, damit die Meldung verschwindet?
Vielen Dank.