Software / code / prosody-modules
File
mod_compat_dialback/mod_compat_dialback.lua @ 6300:8d337dae5a62
mod_csi_grace_period: Fix readme again
diff --git a/mod_csi_grace_period/README.md b/mod_csi_grace_period/README.md
--- a/mod_csi_grace_period/README.md
+++ b/mod_csi_grace_period/README.md
@@ -20,5 +20,6 @@ included with Prosody.
trunk* Works
13 Works
0.12 Works
+ ------- -------
*as of 2025-06-13
| author | Menel <menel@snikket.de> |
|---|---|
| date | Fri, 13 Jun 2025 10:10:26 +0200 |
| parent | 1916:56f6a642fc67 |
line wrap: on
line source
-- Prosody IM -- Copyright (C) 2008-2010 Matthew Wild -- Copyright (C) 2008-2010 Waqas Hussain -- -- This project is MIT/X11 licensed. Please see the -- COPYING file in the source package for more information. -- module:set_global(); module:hook("s2s-stream-features-legacy", function (data) if data.origin.type == "s2sin_unauthed" then data.features:tag("dialback", { xmlns='urn:xmpp:features:dialback' }):up(); end end);