mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-22 12:28:16 +00:00
22 lines
696 B
Markdown
22 lines
696 B
Markdown
# How do I flush a queue?
|
|
|
|
{{since('dev')}}
|
|
|
|
You can use `kcli rebind` for this; the following will flush `example.com` for all
|
|
tenant/campaigns:
|
|
|
|
```console
|
|
$ kcli rebind --domain example.com --always-flush
|
|
```
|
|
|
|
`kcli rebind` re-evaluates the queue for messages in matching queues. In the
|
|
usage above, we're not passing in any new metadata, so the queue won't actually
|
|
change. The `--always-flush` parameter tells KumoMTA that it should make the
|
|
messages immediately eligible for delivery even though we didn't change the
|
|
queue.
|
|
|
|
If you want to do this via API, then
|
|
you should look at the
|
|
[/api/admin/rebind/v1](../reference/rapidoc.md/#post-/api/admin/rebind/v1) HTTP endpoint
|
|
documentation.
|