/caas

A web service for checking and visualising compliance status of XMPP servers.

Primary LanguageJavaScriptBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

XMPP Compliance Tester

                 

Build Status

This is a web service for checking and visualising compliance status of XMPP servers, made as a part of Google Summer of Code 2018 for Conversations.im by Rishi Raj.

Why compliance?

XMPP is an extensible and living standard. Requirments shift over time and thus new extensions (called XEPs) get developed. While server implementors usually react quite fast and are able to cater to those needs it's the server operators who don't upgrade to the latest version or don't enable certain features.

Picking the right extensions to implement or enable isn't always easy. For this reason the XSF has published XEP-0387 XMPP Compliance Suites 2018 listing the most important extensions to date.

This app won't just help you to assess if your server supports those compliance profiles, but also give you some instructions on how to implement the profiles which are currently not supported (if you are using popular server softwares)

How to use

You can use the live version on compliance.conversations.im.

Alternatively, you can run the project in these ways:-

  • as a command line tool to quickly check the compliance of servers locally
  • as a full-fledged web service

Build instructions

You need to have Java 10+ and maven

To build both the command line tool and web service, simply run

mvn package

To build only the command line tool you can use

mvn package -pl caas-annotations,caas-app

Run server

java -jar caas-web/target/caas-web.jar

Run command line tool

java -jar caas-app/target/caas-app.jar [jid] [password]

Contributing

Read CONTRIBUTING.md