@d19dotca If you exec into the mail container, you can run doveadm index -u mail@domain.com '*'
. That does the indexing . Maybe the solr index got corrupt and it's throwing some errors?
You can also see the logs in /run/solr/solr.log
To clear the index:
- Exec into the mail container (docker exec -ti mail /bin/bash)
- supervisorctl stop dovecot
- supervisorctl stop solr
- rm -rf /app/data/solr/dovecot
- supervisorctl start solr
- gosu cloudron:cloudron /app/code/solr/bin/solr create -c dovecot
- supervisorctl start dovecot
- doveadm index -u mail@domain.com '*'