mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
21 lines
336 B
Markdown
21 lines
336 B
Markdown
# Static table
|
|
|
|
The 'static' module implements table lookups using key-value pairs in its
|
|
configuration.
|
|
|
|
```
|
|
table.static {
|
|
entry KEY1 VALUE1
|
|
entry KEY2 VALUE2
|
|
...
|
|
}
|
|
```
|
|
|
|
## Configuration directives
|
|
|
|
***Syntax***: entry _key_ _value\_
|
|
|
|
Add an entry to the table.
|
|
|
|
If the same key is used multiple times, the last one takes effect.
|
|
|