mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-20 11:28:17 +00:00
16 lines
214 B
Markdown
16 lines
214 B
Markdown
# path
|
|
|
|
Specifies the path to the directory into which the spool will be stored.
|
|
|
|
```lua
|
|
kumo.on('init', function()
|
|
kumo.define_spool {
|
|
name = 'data',
|
|
path = '/var/spool/kumo-spool/data',
|
|
}
|
|
end)
|
|
```
|
|
|
|
|
|
|