Added support for Kolab4 tags (kolab_storage_tags)
Also make (set|get)Categories methods protected
Requires changes to kolab plugins and Roundcube core.
Differential D5062
Kolab4 tags support machniak on Dec 13 2024, 11:07 AM. Authored by Tags None Referenced Files
Subscribers
Details
Added support for Kolab4 tags (kolab_storage_tags) Also make (set|get)Categories methods protected Requires changes to kolab plugins and Roundcube core. vendor/bin/phpunit
Diff Detail
Event TimelineComment Actions I think because of the latest change, this is now required: diff --git a/lib/kolab_sync_storage.php b/lib/kolab_sync_storage.php index eb2c379..1dea755 100644 --- a/lib/kolab_sync_storage.php +++ b/lib/kolab_sync_storage.php @@ -110,7 +110,7 @@ class kolab_sync_storage $this->storage->set_options([ // @TODO: there can be Roundcube plugins defining additional headers, // we maybe would need to add them here - 'fetch_headers' => 'X-KOLAB-TYPE X-KOLAB-MIME-VERSION', + 'fetch_headers' => 'X-KOLAB-TYPE X-KOLAB-MIME-VERSION MESSAGE-ID', 'skip_deleted' => true, 'threading' => false, ]); Otherwise the message id is something generic like "mid:1" (from rcube_imap_generic probably). |