# HG changeset patch # User Menel # Date 1734812715 -3600 # Node ID 532bd77adf2d99beb755c87b1d88d1e294feb05e # Parent bc7acb8e627e3bc73bb9038d699c5e5644385cb1 mod_sasl2_sm: Add dependency to sasl2_bind2 as stated in the Readme to module and rockspec diff -r bc7acb8e627e -r 532bd77adf2d mod_sasl2_sm/README.md --- a/mod_sasl2_sm/README.md Sat Dec 21 21:13:38 2024 +0100 +++ b/mod_sasl2_sm/README.md Sat Dec 21 21:25:15 2024 +0100 @@ -5,13 +5,17 @@ rockspec: dependencies: - mod_sasl2 + - mod_sasl2_bind2 --- -Add support for inlining stream management negotiation into the SASL2 process. - -**Note: At the time of writing (November 2022), this module implements a -version of XEP-0198 that is still working its way through the XSF standards -process. For more information and current status, see [PR #1215](https://github.com/xsf/xeps/pull/1215).** +Add support for inlining stream management negotiation into the SASL2 process. (See [XEP-0388: Extensible SASL Profile]) This module depends on [mod_sasl2] and [mod_sasl2_bind2]. It exposes no configuration options. + +# Compatibility + + Prosody-Version Status + --------------- ---------------------- + trunk Works as of 2024-12-21 + 0.12 Does not work diff -r bc7acb8e627e -r 532bd77adf2d mod_sasl2_sm/mod_sasl2_sm.lua --- a/mod_sasl2_sm/mod_sasl2_sm.lua Sat Dec 21 21:13:38 2024 +0100 +++ b/mod_sasl2_sm/mod_sasl2_sm.lua Sat Dec 21 21:25:15 2024 +0100 @@ -6,6 +6,7 @@ local xmlns_sm = "urn:xmpp:sm:3"; module:depends("sasl2"); +module:depends("sasl2_bind2"); -- Advertise what we can do