annotate mod_readonly/README.markdown @ 4709:679f1834dbdb

mod_delegation: update to XEP-0355 v0.5 - namespace bump to "urn:xmpp:delegation:2" - disco remaining infos now uses the XEP defined "urn:xmpp:delegation:2:bare:disco#info:*" namespace - complemeted disco remaining infos implementation for requests made on nodes not already managed by the server - bare JID disco items now uses the XEP defined "urn:xmpp:delegation:2:bare:disco#items:*'" namespace
author Goffi <goffi@goffi.org>
date Fri, 15 Oct 2021 15:10:36 +0200
parents ce5d1fa69ba3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3437
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 This module blocks configured queries that change server state.
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
2
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3 E.g. to make vCard storage read-only:
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
5 ``` lua
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
6 readonly_stores = {
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
7 vcard = { "vcard-temp", "vCard" };
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
8 }
ce5d1fa69ba3 mod_readonly: Add a stub README
Kim Alvefur <zash@zash.se>
parents:
diff changeset
9 ```