1
0
Fork 0
forked from mirror/prosody

Add mod_pastebin

This commit is contained in:
Sara Aimée Smiseth 2020-09-18 17:13:14 +02:00
parent a5c6d5ecef
commit 97740d960b
3 changed files with 3 additions and 1 deletions

View file

@ -2,7 +2,7 @@
## Unreleased ## Unreleased
* Nothing yet * Added and enabled module [mod_pastebin](https://modules.prosody.im/mod_pastebin.html) for MUC rooms and normal chat.
## v1.1.1 ## v1.1.1

View file

@ -75,6 +75,7 @@ RUN download-prosody-modules.bash \
csi `# client state indication (XEP-0352)` \ csi `# client state indication (XEP-0352)` \
e2e_policy `# require end-2-end encryption` \ e2e_policy `# require end-2-end encryption` \
filter_chatstates `# disable "X is typing" type messages` \ filter_chatstates `# disable "X is typing" type messages` \
pastebin `# https://modules.prosody.im/mod_pastebin.html` \
smacks `# stream management (XEP-0198)` \ smacks `# stream management (XEP-0198)` \
throttle_presence `# presence throttling in CSI` \ throttle_presence `# presence throttling in CSI` \
http_upload `# file sharing (XEP-0363)` \ http_upload `# file sharing (XEP-0363)` \

View file

@ -31,6 +31,7 @@ Component (domain_muc) "muc"
max_history_messages = 20 max_history_messages = 20
modules_enabled = { modules_enabled = {
"muc_mam", "muc_mam",
"pastebin",
"vcard_muc" "vcard_muc"
} }