Mercurial > prosody-modules
annotate mod_register_redirect/README.md @ 6214:cc5c0f1dc89b
mod_muc_anonymize_moderation_actions: Fix mentioning Virtualhost for MUC, Compatibility section and License.
diff --git a/mod_muc_anonymize_moderation_actions/README.md b/mod_muc_anonymize_moderation_actions/README.md
--- a/mod_muc_anonymize_moderation_actions/README.md
+++ b/mod_muc_anonymize_moderation_actions/README.md
@@ -1,8 +1,10 @@
-<!--
-SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
-SPDX-License-Identifier: AGPL-3.0-only
--->
-# mod_muc_anonymize_moderation_actions
+---
+labels:
+- 'Stage-Alpha'
+summary: Anonymize moderator actions for participants
+---
+
+## Introduction
This modules allows to anonymize affiliation and role changes in MUC rooms.
@@ -11,13 +13,10 @@ When the feature is enabled, when a mode
This is particularly usefull to prevent some revenge when a moderator bans someone.
-This module is under AGPL-3.0 license.
-
-It was tested on Prosody 0.12.x.
## Configuration
-Just enable the module on your MUC VirtualHost.
+Just enable the module on your MUC Component.
The feature will be accessible throught the room configuration form.
You can tweak the position of the settings in the MUC configuration form using `anonymize_moderation_actions_form_position`.
@@ -26,7 +25,20 @@ This value will be passed as priority fo
By default, the field will be between muc#roomconfig_changesubject and muc#roomconfig_moderatedroom (default value is `78`).
``` lua
-VirtualHost "muc.example.com"
+Component "muc.example.com" "muc"
modules_enabled = { "muc_anonymize_moderation_actions" }
anonymize_moderation_actions_form_position = 96
```
+
+## Compatibility
+
+ ------ ----------------------
+ trunk Works as of 25-05-12
+ 0.13 Works
+ 0.12 Works
+ ------ ----------------------
+
+### License
+
+SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
+SPDX-License-Identifier: AGPL-3.0-only
| author | Menel <menel@snikket.de> |
|---|---|
| date | Mon, 12 May 2025 10:42:26 +0200 |
| parents | fe081789f7b5 |
| children |
| rev | line source |
|---|---|
| 1803 | 1 --- |
| 2 labels: | |
| 3 - 'Stage-Stable' | |
| 4 summary: 'XEP-077 IBR Registration Redirect.' | |
| 5 ... | |
| 6 | |
| 7 Introduction | |
| 8 ------------ | |
| 9 | |
| 10 Registration Redirect as explained in the [IBR | |
| 11 XEP](http://xmpp.org/extensions/xep-0077.html#redirect). | |
| 12 | |
| 13 Details | |
| 14 ------- | |
| 15 | |
| 16 This module shows instructions on how to register to the server, should | |
| 17 it be necessary to perform it through other means Out-Of-Band or not, | |
| 18 and also let's registrations origining from ip addresses in the | |
| 19 whitelist to go through normally. | |
| 20 | |
| 21 Usage | |
| 22 ----- | |
| 23 | |
| 24 Copy the module file into your Prosody modules directory. | |
| 25 | |
| 26 The module will work "out of the box" as long as at least an admin entry | |
| 27 is specified (see admins = {} option into prosody's documentation).These | |
| 28 are the optional parameters you can specify into your global | |
| 29 server/hostname configuration: | |
| 30 | |
| 31 registration_whitelist = { "*your whitelisted web server ip address*" } | |
|
5727
372b6c4bf409
mod_register_redirect: docs: Fix typo in example (thanks melvo)
Matthew Wild <mwild1@gmail.com>
parents:
2785
diff
changeset
|
32 registration_url = "*your web registration page url*" |
| 1803 | 33 registration_text = "Your custom instructions banner here" |
| 34 registration_oob = true (default) or false, in the case there's no applicable OOB method (e.g. the server admins needs to be contacted by phone) | |
| 35 | |
| 36 To not employ any whitelisting (i.e. registration is handled | |
| 37 externally). | |
| 38 | |
| 39 no_registration_whitelist = true | |
| 40 | |
| 41 Compatibility | |
| 42 ------------- | |
| 43 | |
| 2785 | 44 ------ -------------- |
| 45 0.10 Works | |
| 46 0.9 Works | |
| 47 0.8 Works | |
| 48 0.7 Might not work | |
| 49 0.6 Doesn't work | |
| 50 0.5 Doesn't work | |
| 51 ------ -------------- | |
| 1803 | 52 |
