mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
22 lines
482 B
Markdown
22 lines
482 B
Markdown
# Filesystem
|
|
|
|
This module stores message bodies in a file system directory.
|
|
|
|
```
|
|
storage.blob.fs {
|
|
root <directory>
|
|
}
|
|
```
|
|
```
|
|
storage.blob.fs <directory>
|
|
```
|
|
|
|
## Configuration directives
|
|
|
|
**Syntax:** root _path_ <br>
|
|
**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.
|
|
|