diff options
author | Daniel Hoffend <dh@dotlan.net> | 2020-02-23 11:11:32 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2020-02-23 11:11:32 +0100 |
commit | be4b72192ceeb717c077d6fd585eb6153bcdef1f (patch) | |
tree | f1041e3f38e2bee22fc0c64765cc1684090af5aa | |
parent | 9ff9a4815b2f032a0b870b01bae1677ae1009f9c (diff) | |
download | pykolab-be4b72192ceeb717c077d6fd585eb6153bcdef1f.tar.gz |
Added comments about search/index with cyrus 3
Summary:
On debian10 systems with cyrus 3 the squatter command doesn't accept the
`-s` argument anymore and squatter will not run if specified. Also the new
parameter search_engine is introduced. Without search_engine set the squat files
will not be used.
This diff just adds some comments to features not enabled by default.
Reviewers: #pykolab_developers, vanmeeuwen
Reviewed By: #pykolab_developers, vanmeeuwen
Differential Revision: https://git.kolab.org/D919
-rw-r--r-- | share/templates/cyrus.conf.tpl | 2 | ||||
-rw-r--r-- | share/templates/imapd.conf.tpl | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/share/templates/cyrus.conf.tpl b/share/templates/cyrus.conf.tpl index 1d9b4c7..8c781e7 100644 --- a/share/templates/cyrus.conf.tpl +++ b/share/templates/cyrus.conf.tpl @@ -38,6 +38,6 @@ EVENTS { # this is only necessary if caching TLS sessions tlsprune cmd="tls_prune" at=0400 - # Create search indexes regularly + # Create search indexes regularly (remove -s for cyrus 3+) #squatter cmd="squatter -s -i" at=0530 } diff --git a/share/templates/imapd.conf.tpl b/share/templates/imapd.conf.tpl index 0703a22..aaaf3c2 100644 --- a/share/templates/imapd.conf.tpl +++ b/share/templates/imapd.conf.tpl @@ -48,3 +48,5 @@ deletedprefix: DELETED delete_mode: delayed expunge_mode: delayed postuser: shared +# on systems with cyrus 3+ specify search engine +# search_engine: squat |