Annotate
mod_readonly/README.markdown @ 5840:7905766d01f6
mod_pubsub_serverinfo: Treat public providers as public
The opt-in mechanism is to prevent leaking domain names or relationships
between small private servers. These are not considerations relevant to
public servers.
We use the providers.xmpp.net API to fetch a list of known public provider
domains.
| author |
Matthew Wild <mwild1@gmail.com> |
| date |
Mon, 08 Jan 2024 15:56:11 +0000 |
| parent |
3437:ce5d1fa69ba3 |
| rev |
line source |
|
3437
|
1 This module blocks configured queries that change server state.
|
|
|
2
|
|
|
3 E.g. to make vCard storage read-only:
|
|
|
4
|
|
|
5 ``` lua
|
|
|
6 readonly_stores = {
|
|
|
7 vcard = { "vcard-temp", "vCard" };
|
|
|
8 }
|
|
|
9 ```
|