mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-18 18:38:18 +00:00
785 B
785 B
kumo.format_queue_config_toml
local text = kumo.format_queue_config_toml(queue_config)
{{since('dev')}}
Given a scheduled-queue configuration table (as returned by kumo.invoke_get_queue_config or constructed via kumo.make_queue_config), returns the configuration serialized as compact pretty TOML.
The typed Rust representation of the queue config is used during serialization. This preserves the distinction between array-valued and map-valued fields, which is lost when the generic kumo.serde.toml_encode_pretty_compact materializes from a Lua table.
The output round-trips back into a QueueConfig via
kumo.serde.toml_parse.