Mercurial > prosody-modules
view mod_nooffline_noerror/mod_nooffline_noerror.lua @ 5509:ae007be8a6bd
mod_http_oauth2: Add Cache-Control and Pragma headers per by RFC 6749
These are mostly for the various Client-facing endpoints, so the chance
of browsers being involved is slightly lower than with the User-facing
authorization endpoint, which already sent the Cache-Control header.
Thanks to OAuch for pointing out.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 02 Jun 2023 08:59:59 +0200 |
parents | e0f3e29ab18a |
children |
line wrap: on
line source
-- Ignore disabled offline storage -- -- Copyright (C) 2019-2020 Thilo Molitor -- -- This project is MIT/X11 licensed. Please see the -- COPYING file in the source package for more information. -- -- depend on mod_mam to make sure mam is at least loaded and active module:depends "mam"; -- ignore offline messages and don't return any error (the message will be already in MAM at this point) -- this is *only* triggered if mod_offline is *not* loaded and completely ignored otherwise module:hook("message/offline/handle", function(event) local log = event.origin and event.origin.log or module._log; if log then log("info", "Ignoring offline message (mod_offline seems *not* to be loaded)..."); end return true; end, -100);