mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-28 03:56:43 +02:00
Option to disable full text search (lucene)
This is a workaround for the bug in issue #751
This commit is contained in:
parent
3fa3fd5f69
commit
3a5b763018
@ -7,6 +7,7 @@ postmaster_address = {{ POSTMASTER }}@{{ DOMAIN }}
|
||||
hostname = {{ HOSTNAMES.split(",")[0] }}
|
||||
submission_host = {{ FRONT_ADDRESS }}
|
||||
|
||||
{% if DISABLE_FTS_LUCENE != 'true' %}
|
||||
###############
|
||||
# Full-text search
|
||||
###############
|
||||
@ -20,6 +21,7 @@ plugin {
|
||||
|
||||
fts_lucene = whitespace_chars=@.
|
||||
}
|
||||
{% endif %}
|
||||
|
||||
###############
|
||||
# Mailboxes
|
||||
|
@ -3,6 +3,10 @@
|
||||
# these few settings must however be configured before starting the mail
|
||||
# server and require a restart upon change.
|
||||
|
||||
# Set this to `true` to disable full text search by lucene (value: true, false)
|
||||
# This is a workaround for the bug in issue #751 (indexer-worker crashes)
|
||||
DISABLE_FTS_LUCENE=false
|
||||
|
||||
###################################
|
||||
# Common configuration variables
|
||||
###################################
|
||||
|
Loading…
x
Reference in New Issue
Block a user