Mercurial > libervia-backend
view docker/prosody-e2e/Dockerfile @ 4309:b56b1eae7994
component email gateway: add multicasting:
XEP-0033 multicasting is now supported both for incoming and outgoing messages. XEP-0033
metadata are converted to suitable Email headers and vice versa.
Email address and JID are both supported, and delivery is done by the gateway when
suitable on incoming messages.
rel 450
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 26 Sep 2024 16:12:01 +0200 |
parents | 31c84a32c897 |
children |
line wrap: on
line source
FROM prosodyim/prosody:0.12 LABEL maintainer="Goffi <tmp_dockerfiles@goffi.org>" ARG DEBIAN_FRONTEND=noninteractive # we synchronize tls-cert group with the one in libervia-web/libervia-backend RUN addgroup tls-cert --gid 9999 && adduser prosody tls-cert && \ # we want third party modules apt-get update && apt-get install -y --no-install-recommends mercurial && \ mkdir -p /usr/local/share/prosody && \ hg clone https://hg.prosody.im/prosody-modules /usr/local/share/prosody/modules && \ chown -R prosody:prosody /usr/local/share/prosody COPY --chown=root:prosody prosody.cfg.lua /etc/prosody/prosody.cfg.lua COPY --chown=root:tls-cert certificates/server1.test/cert.pem /usr/share/libervia/certificates/server1.test.pem COPY --chown=root:tls-cert certificates/server1.test/key.pem /usr/share/libervia/certificates/server1.test-key.pem