Mercurial > prosody-modules
view mod_throttle_unsolicited/README.markdown @ 5590:b681948a01f1
mod_http_muc_log: Fix redirect bug
If you somehow went to /muc_log/room/yyyy-mm-dd/something it would send
you in a redirect loop that continuously added path components until the
path can't be parsed anymore.
This should ensure that /muc_log/room/date/ is simply 404'd
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 10 Jul 2023 16:10:57 +0200 |
parents | 476afcbfb3e9 |
children |
line wrap: on
line source
--- rockspec: dependencies: - mod_track_muc_joins summary: Limit rate of outgoing unsolicited messages --- Introduction ============ This module limits the rate of outgoing unsolicited messages from local clients. Optionally, unsolicited messages coming in from remote servers may be limited per s2s conneciton. A message counts as "unsolicited" if the receiving user hasn't added the sending user to their roster. The module depends on [mod\_track\_muc\_joins] in order to allow sent messages to joined MUC rooms. Configuration ============= To set a limit on messages from local sessions: ``` {.lua} unsolicited_messages_per_minute = 10 ``` To enable limits on unsolicited messages from s2s connections: ``` {.lua} unsolicited_s2s_messages_per_minute = 100 ```