mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
* use <h3> and <hr> elements to separate configuration directives * use <code> elements to mark constants, fs paths, module names etc. * fix unneeded "\_" escaping * fix list formatting
23 lines
466 B
Markdown
23 lines
466 B
Markdown
# Filesystem
|
|
|
|
This module stores message bodies in a file system directory.
|
|
|
|
```
|
|
storage.blob.fs {
|
|
root <directory>
|
|
}
|
|
```
|
|
|
|
```
|
|
storage.blob.fs <directory>
|
|
```
|
|
|
|
## Configuration directives
|
|
|
|
### root _path_
|
|
Default: not set
|
|
|
|
Path to the FS directory. Must be readable and writable by the server process.
|
|
If it does not exist - it will be created (parent directory should be writable
|
|
for this). Relative paths are interpreted relatively to server state directory.
|
|
|