annotate mod_blocking.wiki @ 511:9cf5a22e30a1

allow_unencrypted_plain_auth is not required
author MWild1@gmail.com
date Fri, 03 Apr 2015 00:57:11 +0000
parents deb4182a7b61
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
134
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
1 #summary XEP-0191: Simple Communications Blocking support
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
2 #labels Stage-Alpha
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
3
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
4 = Introduction =
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
5
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
6 Privacy lists are a widely implemented protocol for instructing your server on blocking communications with selected users and services.
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
7
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
8 However experience has shown that the power and flexibility of the rule-based system that privacy lists allow is very often much more complex than the user needs, and that in most cases a simple block on all communications to or from a list of specified JIDs would suffice.
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
9
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
10 Such a protocol would also allow much simpler user interface design than the current attempts at full privacy list interfaces.
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
11
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
12 = Details =
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
13
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
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).
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
15
478
deb4182a7b61 Add note about mod_blocklist in 0.10
Kim Alvefur <zash@zash.se>
parents: 134
diff changeset
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].
deb4182a7b61 Add note about mod_blocklist in 0.10
Kim Alvefur <zash@zash.se>
parents: 134
diff changeset
17
134
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
18 = Configuration =
478
deb4182a7b61 Add note about mod_blocklist in 0.10
Kim Alvefur <zash@zash.se>
parents: 134
diff changeset
19 Simply ensure that mod_privacy (or mod_privacy_lists in 0.10+) and mod_blocking are loaded in your modules_enabled list:
134
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
20
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
21 {{{
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
22 modules_enabled = {
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
23 -- ...
478
deb4182a7b61 Add note about mod_blocklist in 0.10
Kim Alvefur <zash@zash.se>
parents: 134
diff changeset
24 "privacy", -- or privacy_lists in Prosody 0.10+
134
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
25 "blocking",
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
26 -- ...
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
27 }}}
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
28
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
29 = Compatibility =
478
deb4182a7b61 Add note about mod_blocklist in 0.10
Kim Alvefur <zash@zash.se>
parents: 134
diff changeset
30 ||0.10||Works but will conflict with mod_blocklist||
deb4182a7b61 Add note about mod_blocklist in 0.10
Kim Alvefur <zash@zash.se>
parents: 134
diff changeset
31 ||0.9||Works||
134
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
32 ||0.8||Works||
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
33 ||0.7||Works||
6abd50682378 Created wiki page through web user interface.
MWild1
parents:
diff changeset
34 ||0.6||Doesn't work||