Mercurial > prosody-modules
annotate mod_s2s_whitelist/README.markdown @ 5734:cef8bce2d71b
luacheck: Add new module API methods from trunk
See
* trunk rev 4d4f9e42bcf8
* trunk rev 65fb0d7a2312
* trunk rev c9ef35fab0b1
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 27 Nov 2023 07:10:06 +0100 |
parents | 313937349fbc |
children |
rev | line source |
---|---|
3155 | 1 This module lets you block connections to any remote servers not on a |
2 whitelist. | |
3 | |
4 ``` {.lua} | |
5184
313937349fbc
mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents:
3155
diff
changeset
|
5 modules_enabled = { |
313937349fbc
mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents:
3155
diff
changeset
|
6 -- other modules -- |
313937349fbc
mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents:
3155
diff
changeset
|
7 "s2s_whitelist", |
313937349fbc
mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents:
3155
diff
changeset
|
8 |
313937349fbc
mod_s2s_whitelist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents:
3155
diff
changeset
|
9 } |
3155 | 10 s2s_whitelist = { |
11 "example.org", | |
12 } | |
13 ``` |