annotate mod_s2s_blacklist/README.markdown @ 5657:80abda15a1e9

mod_muc_members_json: Fix potential error when removing old affiliations Found this uncommitted change on a production server... The affiliation data may been `nil` at some point, triggering an error?
author Kim Alvefur <zash@zash.se>
date Tue, 19 Sep 2023 14:55:56 +0200
parents 3b5358934d15
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3154
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 This module lets you block connections to remote servers at the s2s
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
2 level.
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4 ``` {.lua}
5183
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
5 modules_enabled = {
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
6 -- other modules --
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
7 "s2s_blacklist",
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
8
3b5358934d15 mod_s2s_blacklist/README: Show inclusion in modules_enabled in example
Kim Alvefur <zash@zash.se>
parents: 3154
diff changeset
9 }
3154
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
10 s2s_blacklist = {
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
11 "proxy.eu.jabber.org",
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
12 }
59dd0cdae560 mod_s2s_blacklist: Add a README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
13 ```