Software /
code /
prosody
File
tools/xepchanges.sh @ 13613:9cd5b3484a1d
mod_invites: Add support for invites_page option to use external invites pages
This allows Prosody to easily provide friendly invitation links, even without
setting up mod_invites_page (which is a community module). Admins can
configure it to use a third-party deployment such as https://xmpp.link or they
can deploy their own based on
https://github.com/modernxmpp/easy-xmpp-invitation
Alternatively they can just install mod_invites_page and this will all be
handled automatically by that.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 09 Jan 2025 13:23:46 +0000 |
parent | 13383:091667bd2f0e |
line wrap: on
line source
#!/bin/sh -eu wget -N https://xmpp.org/extensions/xeplist.xml xml2 <xeplist.xml | 2csv xep-infos/xep number version | grep -v ^xxxx,| sort -g > xepinfos.csv xml2 < doc/doap.xml | 2csv -d ' ' xmpp:SupportedXep @rdf:resource xmpp:version | sed -r 's/https?:\/\/xmpp\.org\/extensions\/xep-0*([1-9][0-9]*)\.html/\1/' | while read -r xep ver ; do grep "^$xep," xepinfos.csv | awk -F, "\$2 != \"$ver\" { print (\"XEP-\"\$1\" updated to \"\$2\" from $ver\") }" done