Update u_e-dovecot-fts.md

Dieser Commit ist enthalten in:
André Peters 2019-03-10 10:23:44 +01:00 committet von GitHub
Ursprung 69e304ef75
Commit 2acf2ad8e1
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -11,8 +11,9 @@ Since we run in Docker and create our containers with the "restart: always" flag
## FTS related Dovecot commands ## FTS related Dovecot commands
``` ```
# single user
docker-compose exec dovecot-mailcow doveadm fts rescan -u user@domain docker-compose exec dovecot-mailcow doveadm fts rescan -u user@domain
`# All: # all users
docker-compose exec dovecot-mailcow doveadm fts rescan -A 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: 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 '*' 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 '*' docker-compose exec dovecot-mailcow doveadm index -A '*'
``` ```