Mercurial > prosody-wiki
comparison mod_blocking.wiki @ 478:deb4182a7b61
Add note about mod_blocklist in 0.10
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 19 Aug 2014 16:53:22 +0200 |
parents | 6abd50682378 |
children |
comparison
equal
deleted
inserted
replaced
477:86bd8fbd25bc | 478:deb4182a7b61 |
---|---|
11 | 11 |
12 = Details = | 12 = Details = |
13 | 13 |
14 Simple Communications Blocking was developed to solve the above issues, and allows the client to manage a simple list of blocked JIDs. This plugin implements support for that protocol in Prosody, however the actual blocking is still managed by mod_privacy, so it is *required* for that plugin to be loaded (this may change in future). | 14 Simple Communications Blocking was developed to solve the above issues, and allows the client to manage a simple list of blocked JIDs. This plugin implements support for that protocol in Prosody, however the actual blocking is still managed by mod_privacy, so it is *required* for that plugin to be loaded (this may change in future). |
15 | 15 |
16 An XEP-0191 implementation without dependency on mod_privacy is available in Prosody 0.10 as [https://prosody.im/doc/modules/mod_blocklist mod_blocklist]. | |
17 | |
16 = Configuration = | 18 = Configuration = |
17 Simply ensure that mod_privacy and mod_blocking are loaded in your modules_enabled list: | 19 Simply ensure that mod_privacy (or mod_privacy_lists in 0.10+) and mod_blocking are loaded in your modules_enabled list: |
18 | 20 |
19 {{{ | 21 {{{ |
20 modules_enabled = { | 22 modules_enabled = { |
21 -- ... | 23 -- ... |
22 "privacy", | 24 "privacy", -- or privacy_lists in Prosody 0.10+ |
23 "blocking", | 25 "blocking", |
24 -- ... | 26 -- ... |
25 }}} | 27 }}} |
26 | 28 |
27 = Compatibility = | 29 = Compatibility = |
30 ||0.10||Works but will conflict with mod_blocklist|| | |
31 ||0.9||Works|| | |
28 ||0.8||Works|| | 32 ||0.8||Works|| |
29 ||0.7||Works|| | 33 ||0.7||Works|| |
30 ||0.6||Doesn't work|| | 34 ||0.6||Doesn't work|| |