mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-10 04:22:13 +00:00
0249bd0d4dfdf726d1fde266bc058e4d2f9d398b
Entries now have a uuid that identifies them within a given instance (NOT within a cluster). The id is returned when the entry is established: ```console $ kcli --endpoint http://127.0.0.1:8000 bounce --everything --reason boop { "id": "9a946198-9351-4e0e-b460-fc84e066878a", "bounced": {}, "total_bounced": 0 } ``` You can list entries with their remaining duration: ```console $ kcli --endpoint http://127.0.0.1:8000 bounce-list [ { "id": "9a946198-9351-4e0e-b460-fc84e066878a", "campaign": null, "tenant": null, "domain": null, "reason": "boop", "duration": "4m 57s 313ms 891us 882ns" } ] ``` and cancel them: ```console $ kcli --endpoint http://127.0.0.1:8000 bounce-cancel --id 9a946198-9351-4e0e-b460-fc84e066878a removed 9a946198-9351-4e0e-b460-fc84e066878a ``` and the error case if you try it again: ```console $ kcli --endpoint http://127.0.0.1:8000 bounce-cancel --id 9a946198-9351-4e0e-b460-fc84e066878a Error: bounce entry 9a946198-9351-4e0e-b460-fc84e066878a not found ```
KumoMTA
This repository holds the source code to KumoMTA, a modern Message Transfer Agent designed for large scale sending environments.
You can learn more about why it exists here.
Documentation
You can learn more about KumoMTA from the Documentation
Community
Real-time discussion is available on Our Discord.
Our Forum is better for long-form questions and discussions.
Developers
If you're interesting in contributing/extending KumoMTA, take a look at DEVELOPERS.md.
Getting Help
Please see How to Report Bugs or Get Help
Description
The first Open-Source high-performance MTA developed from the ground-up for high-volume email sending environments.
37 MiB
Languages
Rust
91.8%
Lua
6.3%
Python
0.9%
Shell
0.8%
JavaScript
0.1%