scripts: changed SKIP_FTS text to warn on lower threaded systems

This commit is contained in:
DerLinkman 2025-01-23 08:42:22 +01:00
parent 5a04942d89
commit 1dac8f1f66
No known key found for this signature in database
GPG key ID: AA4A82514748F5A9
2 changed files with 2 additions and 2 deletions

View file

@ -471,7 +471,7 @@ adapt_new_options() {
elif [[ ${option} == "SKIP_FTS" ]]; then
if ! grep -q ${option} mailcow.conf; then
echo "Adding new option \"${option}\" to mailcow.conf"
echo '# Skip FTS (Fulltext Search) for Dovecot on low-memory systems or if you simply want to disable it.' >> mailcow.conf
echo '# Skip FTS (Fulltext Search) for Dovecot on low-memory, low-threaded systems or if you simply want to disable it.' >> mailcow.conf
echo "# Dovecot inside mailcow use Flatcurve as FTS Backend." >> mailcow.conf
echo "SKIP_FTS=y" >> mailcow.conf
fi