├── .github └── workflows │ ├── docker-publish.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Dockerfile ├── conf.d ├── 01-modules.cfg.lua ├── 02-storage.cfg.lua ├── 03-e2e-policy.cfg.lua ├── 04-server_contact_info.cfg.lua └── 05-vhost.cfg.lua ├── docker-entrypoint.bash ├── docker-prosody-module-install.bash ├── download-prosody-modules.bash ├── prosody.cfg.lua ├── readme.md ├── tests ├── docker-compose.yml ├── glauth │ └── config.cfg ├── readme.md ├── requirements.txt ├── test.bash ├── test_prosody.py ├── tests-prosody.bats ├── tests-prosody_ldap.bats ├── tests-prosody_postgres.bats └── tests.bats └── update-dependencies.sh /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/Dockerfile -------------------------------------------------------------------------------- /conf.d/01-modules.cfg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/conf.d/01-modules.cfg.lua -------------------------------------------------------------------------------- /conf.d/02-storage.cfg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/conf.d/02-storage.cfg.lua -------------------------------------------------------------------------------- /conf.d/03-e2e-policy.cfg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/conf.d/03-e2e-policy.cfg.lua -------------------------------------------------------------------------------- /conf.d/04-server_contact_info.cfg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/conf.d/04-server_contact_info.cfg.lua -------------------------------------------------------------------------------- /conf.d/05-vhost.cfg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/conf.d/05-vhost.cfg.lua -------------------------------------------------------------------------------- /docker-entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/docker-entrypoint.bash -------------------------------------------------------------------------------- /docker-prosody-module-install.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/docker-prosody-module-install.bash -------------------------------------------------------------------------------- /download-prosody-modules.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/download-prosody-modules.bash -------------------------------------------------------------------------------- /prosody.cfg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/prosody.cfg.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/readme.md -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/glauth/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/glauth/config.cfg -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/readme.md -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/test.bash -------------------------------------------------------------------------------- /tests/test_prosody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/test_prosody.py -------------------------------------------------------------------------------- /tests/tests-prosody.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/tests-prosody.bats -------------------------------------------------------------------------------- /tests/tests-prosody_ldap.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/tests-prosody_ldap.bats -------------------------------------------------------------------------------- /tests/tests-prosody_postgres.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/tests-prosody_postgres.bats -------------------------------------------------------------------------------- /tests/tests.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/tests/tests.bats -------------------------------------------------------------------------------- /update-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraSmiseth/prosody/HEAD/update-dependencies.sh --------------------------------------------------------------------------------