mod_throttle_unsolicited/README.markdown
author Matthew Wild <mwild1@gmail.com>
Mon, 26 Mar 2018 08:05:22 +0100
changeset 2953 39994c6bb314
parent 2328 1424aa8877f0
child 4108 476afcbfb3e9
permissions -rw-r--r--
mod_mam_muc: Advertise mam:1 instead of mam:2 if not using new MUC code [fixes #1118]

---
depends:
- '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
```