diff --git a/docs/u_e-dovecot-fts.md b/docs/u_e-dovecot-fts.md index f0de90026..61a3e6e46 100644 --- a/docs/u_e-dovecot-fts.md +++ b/docs/u_e-dovecot-fts.md @@ -11,8 +11,9 @@ Since we run in Docker and create our containers with the "restart: always" flag ## FTS related Dovecot commands ``` +# single user docker-compose exec dovecot-mailcow doveadm fts rescan -u user@domain -`# All: +# all users docker-compose exec dovecot-mailcow doveadm fts rescan -A ``` @@ -23,9 +24,9 @@ This does **not** re-index a mailbox. It basically repairs a given index. If you want to re-index data immediately, you can run the followig command, where '*' can also be a mailbox mask like 'Sent'. You do not need to run these commands, but it will speed things up a bit: ``` -# Single user +# single user docker-compose exec dovecot-mailcow doveadm index -u user@domain '*' -# All users, but obviously slower and more dangerous +# all users, but obviously slower and more dangerous docker-compose exec dovecot-mailcow doveadm index -A '*' ```