We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e8bb06 commit de80c12Copy full SHA for de80c12
update.sh
@@ -694,7 +694,15 @@ migrate_solr_config_options() {
694
echo "Once you decided on removing the volume simply run docker volume rm $solr_volume to remove it manually."
695
echo "This can be done anytime. mailcow does not use this volume anymore."
696
fi
697
- fi
+ fi
698
+
699
+ # Delete old fts.conf before forced switch to flatcurve to ensure update is working properly
700
+ FTS_CONF_PATH="data/conf/dovecot/conf.d/fts.conf"
701
+ if [[ -f "$FTS_CONF_PATH" ]]; then
702
+ if grep -q "Autogenerated by mailcow" "$FTS_CONF_PATH"; then
703
+ rm -rf $FTS_CONF_PATH
704
705
706
}
707
708
############## End Function Section ##############
0 commit comments