Software / code / prosody-modules
Annotate
mod_s2s_whitelist/README.markdown @ 5475:022733437fef
mod_http_oauth2: Validate redirect_uri before using it for error redirects
To be extra sure that it is safe to use in redirects from this point on.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 18 May 2023 14:02:09 +0200 |
| parent | 5184:313937349fbc |
| 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 ``` |