Mercurial > prosody-modules
annotate mod_s2s_blacklist/README.markdown @ 5305:9b9f35aaeb91
mod_client_management: Add support for revocation of clients (when possible)
We decided to keep the unified listing of "clients", which includes both SASL2
clients and OAuth grants, etc. To a user, or someone wanting to manage what
can access their account, they are largely equivalent.
To accomplish this technically, we add a prefix to the id to state what type
it really is.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 05 Apr 2023 19:42:16 +0100 |
parents | 3b5358934d15 |
children |
rev | line source |
---|---|
3154 | 1 This module lets you block connections to remote servers at the s2s |
2 level. | |
3 | |
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 | 10 s2s_blacklist = { |
11 "proxy.eu.jabber.org", | |
12 } | |
13 ``` |