Mercurial > prosody-wiki
annotate mod_auto_accept_subscriptions.wiki @ 483:4bf7416f4570
Created wiki page through web user interface.
author | MWild1@gmail.com |
---|---|
date | Thu, 21 Aug 2014 08:22:59 +0000 |
parents | 528721aaea46 |
children |
rev | line source |
---|---|
263 | 1 #summary Automatically accept incoming subscription requests on behalf of users |
2 #labels Stage-Beta | |
3 | |
4 = Introduction = | |
5 | |
454
528721aaea46
a bunch of pages: strip trailing whitespace
Kim Alvefur <zash@zash.se>
parents:
263
diff
changeset
|
6 In some environments where all users on the system have mutual trust in each other, it's sometimes fine to skip the usual authorization process to |
263 | 7 add someone to your contact list and see their status. |
8 | |
9 This module sets Prosody to automatically accept incoming subscription authorization requests, and add the contact to the user's contact list, without intervention from the user. | |
10 | |
11 = Configuration = | |
12 Simply add the module to your modules_enabled list like any other module: | |
13 | |
14 {{{ | |
15 modules_enabled = { | |
16 ... | |
17 "auto_accept_subscriptions"; | |
18 ... | |
19 } | |
20 }}} | |
21 | |
22 This module has no further configuration. | |
23 | |
24 = Compatibility = | |
25 ||trunk||Works|| | |
26 ||0.9||Works|| | |
27 ||0.8||Works|| |