2019-01-16 18:21:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Inspired by the solr.sh from jkaberg (https://github.com/jkaberg/mailinabox-sogo)
|
|
|
|
# with some modifications
|
|
|
|
#
|
|
|
|
# IMAP search with lucene via solr
|
|
|
|
# --------------------------------
|
|
|
|
#
|
|
|
|
# By default dovecot uses its own Squat search index that has awful performance
|
|
|
|
# on large mailboxes. Dovecot 2.1+ has support for using Lucene internally but
|
|
|
|
# this didn't make it into the Ubuntu packages, so we use Solr instead to run
|
|
|
|
# Lucene for us.
|
|
|
|
#
|
|
|
|
# Solr runs as a tomcat process. The dovecot solr plugin talks to solr via its
|
|
|
|
# HTTP interface, causing mail to be indexed when searches occur, and getting
|
|
|
|
# results back.
|
|
|
|
|
|
|
|
source setup/functions.sh # load our functions
|
|
|
|
source /etc/mailinabox.conf # load global vars
|
|
|
|
|
|
|
|
# Install packages and basic configuation
|
|
|
|
# ---------------------------------------
|
|
|
|
|
|
|
|
echo "Installing Solr..."
|
|
|
|
|
|
|
|
# Install packages
|
|
|
|
apt_install solr-tomcat dovecot-solr
|
|
|
|
|
|
|
|
# Solr requires a schema to tell it how to index data, this is provided by dovecot
|
|
|
|
cp /usr/share/dovecot/solr-schema.xml /etc/solr/conf/schema.xml
|
|
|
|
|
|
|
|
# Update the dovecot plugin configuration
|
|
|
|
#
|
|
|
|
# Break-imap-search makes search work the way users expect, rather than the way
|
|
|
|
# the IMAP specification expects
|
|
|
|
tools/editconf.py /etc/dovecot/conf.d/10-mail.conf \
|
|
|
|
mail_plugins="fts fts_solr"
|
|
|
|
|
|
|
|
cat > /etc/dovecot/conf.d/90-plugin-fts.conf << EOF;
|
|
|
|
plugin {
|
|
|
|
fts = solr
|
|
|
|
fts_autoindex = yes
|
|
|
|
fts_solr = break-imap-search url=http://127.0.0.1:8080/solr/
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Bump memory allocation for Solr.
|
|
|
|
# Not needed? I'll let it sit here for a while.
|
|
|
|
#echo 'export JAVA_OPTS=-Xms512M -Xmx1024M' > /usr/share/tomcat7/bin/setenv.sh
|
|
|
|
|
|
|
|
# Install cronjobs to keep FTS up to date
|
|
|
|
hide_output install -m 755 conf/cronjob/dovecot /etc/cron.daily/
|
|
|
|
hide_output install -m 644 conf/cronjob/solr /etc/cron.d/
|
|
|
|
|
|
|
|
# PERMISSIONS
|
|
|
|
|
|
|
|
# Ensure configuration files are owned by dovecot and not world readable.
|
|
|
|
chown -R mail:dovecot /etc/dovecot
|
|
|
|
chmod -R o-rwx /etc/dovecot
|
|
|
|
|
2019-04-20 10:45:33 +00:00
|
|
|
cat > /etc/systemd/system/tomcat9.d/solr-permissions.conf << EOF
|
2019-04-18 16:29:42 +00:00
|
|
|
[Service]
|
|
|
|
ReadWritePaths=/var/lib/solr/
|
|
|
|
ReadWritePaths=/var/lib/solr/data/
|
|
|
|
EOF
|
|
|
|
|
2019-01-16 18:21:19 +00:00
|
|
|
# Restart services to reload solr schema & dovecot plugins
|
2019-04-18 16:29:42 +00:00
|
|
|
restart_service tomcat9
|
2019-01-16 18:21:19 +00:00
|
|
|
restart_service dovecot
|
2019-01-16 19:32:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Kickoff building the index
|
|
|
|
|
|
|
|
# Per doveadm-fts manpage: Scan what mails exist in the full text search index
|
|
|
|
# and compare those to what actually exist in mailboxes.
|
|
|
|
# This removes mails from the index that have already been expunged and makes
|
|
|
|
# sure that the next doveadm index will index all the missing mails (if any).
|
|
|
|
doveadm fts rescan -A
|
|
|
|
|
|
|
|
# Adds unindexed files to the fts database
|
|
|
|
# * `-q`: Queues the indexing to be run by indexer process. (will background the indexing)
|
|
|
|
# * `-A`: All users
|
|
|
|
# * `'*'`: All folders
|
|
|
|
doveadm index -q -A '*'
|