Software / code / prosody-modules
File
mod_storage_xmlarchive/datamanager_append_raw.lib.lua @ 6249:12a2989c7cc1
mod_limits_exception: obsolete
diff --git a/mod_limits_exception/README.md b/mod_limits_exception/README.md
--- a/mod_limits_exception/README.md
+++ b/mod_limits_exception/README.md
@@ -1,6 +1,8 @@
---
+labels:
+- Stage-Obsolete
summary: Allow specified JIDs to bypass rate limits
-...
+---
This module allows you to configure a list of JIDs that should be allowed to
bypass rate limit restrictions.
| author | Menel <menel@snikket.de> |
|---|---|
| date | Mon, 12 May 2025 10:57:17 +0200 |
| parent | 2343:f4ab0966ba89 |
line wrap: on
line source
local io_open = io.open; local dm = require "core.storagemanager".olddm; -- Append a blob of data to a file function dm.append_raw(username, host, datastore, ext, data) if type(data) ~= "string" then return; end local filename = dm.getpath(username, host, datastore, ext, true); local ok; local f, msg = io_open(filename, "r+"); if not f then -- File did probably not exist, let's create it f, msg = io_open(filename, "w"); if not f then return nil, msg, "open"; end end local pos = f:seek("end"); ok, msg = f:write(data); if not ok then f:close(); return ok, msg, "write"; end ok, msg = f:close(); if not ok then return ok, msg; end return true, pos; end