Software /
code /
prosody-modules
Comparison
mod_s2s_whitelist/README.md @ 6003:fe081789f7b5
All community modules: Unify file extention of Markdown files to .md
author | Menel <menel@snikket.de> |
---|---|
date | Tue, 22 Oct 2024 10:26:01 +0200 |
parent | 5184:mod_s2s_whitelist/README.markdown@313937349fbc |
comparison
equal
deleted
inserted
replaced
6002:5a65a632d5b9 | 6003:fe081789f7b5 |
---|---|
1 This module lets you block connections to any remote servers not on a | |
2 whitelist. | |
3 | |
4 ``` {.lua} | |
5 modules_enabled = { | |
6 -- other modules -- | |
7 "s2s_whitelist", | |
8 | |
9 } | |
10 s2s_whitelist = { | |
11 "example.org", | |
12 } | |
13 ``` |