From 97740d960be2021a11b96b903399d6f4984f31e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Aim=C3=A9e=20Smiseth?= <51710585+SaraSmiseth@users.noreply.github.com> Date: Fri, 18 Sep 2020 17:13:14 +0200 Subject: [PATCH] Add mod_pastebin --- CHANGELOG.md | 2 +- Dockerfile | 1 + conf.d/05-vhost.cfg.lua | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2ebbb2..81975de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 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 diff --git a/Dockerfile b/Dockerfile index fe52a34..2dca487 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,6 +75,7 @@ RUN download-prosody-modules.bash \ csi `# client state indication (XEP-0352)` \ e2e_policy `# require end-2-end encryption` \ filter_chatstates `# disable "X is typing" type messages` \ + pastebin `# https://modules.prosody.im/mod_pastebin.html` \ smacks `# stream management (XEP-0198)` \ throttle_presence `# presence throttling in CSI` \ http_upload `# file sharing (XEP-0363)` \ diff --git a/conf.d/05-vhost.cfg.lua b/conf.d/05-vhost.cfg.lua index e4fe3f1..5fbfb90 100644 --- a/conf.d/05-vhost.cfg.lua +++ b/conf.d/05-vhost.cfg.lua @@ -31,6 +31,7 @@ Component (domain_muc) "muc" max_history_messages = 20 modules_enabled = { "muc_mam", + "pastebin", "vcard_muc" }