From a6026056f147125bbfc3494a5d0068aaa7eebe76 Mon Sep 17 00:00:00 2001 From: Stephan Bosch <stephan.bosch@open-xchange.com> Date: Sun, 13 Oct 2024 00:18:48 +0200 Subject: [PATCH] lib-sieve: sieve-storage - Log proper error for lack of synchronization support --- src/lib-sieve/sieve-storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib-sieve/sieve-storage.c b/src/lib-sieve/sieve-storage.c index 6c8f1f46f..5a9dda979 100644 --- a/src/lib-sieve/sieve-storage.c +++ b/src/lib-sieve/sieve-storage.c @@ -310,7 +310,7 @@ sieve_storage_alloc_from_class(struct sieve_instance *svinst, if ((flags & SIEVE_STORAGE_FLAG_SYNCHRONIZING) != 0 && !storage_class->allows_synchronization) { - e_debug(event, "Storage does not support synchronization"); + e_error(event, "Storage does not support synchronization"); *error_code_r = SIEVE_ERROR_NOT_POSSIBLE; return -1; } -- GitLab