Software / code / prosody-modules
Annotate
mod_s2s_blacklist/README.markdown @ 5420:aa068449b0b6
mod_http_oauth2: Bail out of implicit flow on invalid or missing redirect
Probably hasn't been tested, and maybe never will since it's disabled
and more or less deprecated in OAuth 2.1
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 06 May 2023 12:23:22 +0200 |
| parent | 5183:3b5358934d15 |
| 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 ``` |