commit b9392807cb2a5a29f9b39be6569787d1d3843cf2
parent c96b66016db223de8b6735ce9d300c48838badae
Author: Vineet Kumar <git@vineetk.net>
Date: Mon, 23 Feb 2026 23:50:06 -0500
saklas: workaround prosody being too old for sasl2
Diffstat:
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/epistemia/systems/saklas.scm b/epistemia/systems/saklas.scm
@@ -515,17 +515,19 @@ rpz:
(s2s-require-encryption? #t)
(s2s-secure-auth? #t)
(authentication "internal_hashed")
+ (plugin-paths (list prosody-cloud-notify))
(modules-enabled
;; list from https://github.com/monal-im/Monal/wiki/Considerations-for-XMPP-server-admins#prosody
(cons* "sasl_ssdp"
- "sasl2"
- "sasl2_bind2"
- "sasl2_sm"
- "sasl2_fast"
+ ;; TODO update prosody to 13
+ ;; "sasl2"
+ ;; "sasl2_bind2"
+ ;; "sasl2_sm"
+ ;; "sasl2_fast"
"muc_notifications"
"smacks"
"mam"
- "csi_battery_saver"
+ "csi_simple"
"cloud_notify"
"bookmarks"
%default-modules-enabled))