additional notification extensions
All checks were successful
thrrgilag/prosody-docker/pipeline/head This commit looks good

This commit is contained in:
Morgan McMillian 2024-04-15 13:27:56 -07:00
parent 1f874b0351
commit e9fcdb1ad6
2 changed files with 5 additions and 2 deletions

View file

@ -4,13 +4,15 @@ RUN apt-get update && \
apt-get install ca-certificates extrepo -y && \
extrepo enable prosody && \
apt-get update && \
apt-get install prosody prosody-modules -y
apt-get install prosody prosody-modules lua-luaossl -y
RUN mkdir -p /run/prosody/ && \
chown -R prosody:prosody /run/prosody/
RUN mkdir -p /etc/prosody/conf.d/
RUN prosodyctl install --server=https://modules.prosody.im/rocks/ mod_cloud_notify_extensions
COPY prosody.cfg.lua /etc/prosody/prosody.cfg.lua
EXPOSE 5222

View file

@ -72,7 +72,8 @@ modules_enabled = {
"websocket"; -- XMPP over WebSockets
-- Other specific functionality
"cloud_notify"
"cloud_notify";
"cloud_notify_extensions";
--"announce"; -- Send announcement to all online users
--"groups"; -- Shared roster support
--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.