Software / code / prosody-modules
Annotate
mod_require_otr/README.markdown @ 4298:020dd0a59f1f
mod_muc_markers: Add option for @id rewriting, default off (may break some clients)
XEP-0333 was updated to clarify that stanza-id should be used
instead of the 'id' attribute when in a MUC. Some clients still
use the id attribute, which is why we were rewriting it.
Rewriting is bad because mod_muc advertises stable_id, indicating
that Prosody does *not* rewrite ids. Recent versions of Conversations
actually depend on this being true.
All clients should migrate to using stanza-id for markers. See XEP-0333.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Mon, 14 Dec 2020 12:09:25 +0000 |
| parent | 1803:4d73a1a6ba68 |
| rev | line source |
|---|---|
| 1803 | 1 --- |
| 2 labels: | |
| 3 - 'Stage-Stable' | |
| 4 summary: 'Enforce a policy for OTR-encrypted messages' | |
| 5 ... | |
| 6 | |
| 7 Introduction | |
| 8 ------------ | |
| 9 | |
| 10 [OTR, "Off The Record"](https://otr.cypherpunks.ca/), encryption allows | |
| 11 clients to encrypt messages such that the server cannot read/modify | |
| 12 them. | |
| 13 | |
| 14 This module allows the server admin to require that all messages are | |
| 15 OTR-encrypted. | |
| 16 | |
| 17 Configuration | |
| 18 ------------- | |
| 19 | |
| 20 Just enable the module by adding it to your global `modules_enabled`, or | |
| 21 if you only want to load it on a single host you can load it only for | |
| 22 one host like this: | |
| 23 | |
| 24 VirtualHost "example.com" | |
| 25 modules_enabled = { "require_otr" } | |
| 26 | |
| 27 #### Compatibility | |
| 28 | |
| 29 ------ ------- | |
| 30 0.10 Works | |
| 31 0.9 Works | |
| 32 0.8 Works | |
| 33 ------ ------- |