Mercurial > prosody-wiki
annotate mod_vjud.wiki @ 334:403950aefc52
Update wiki page to reflect mod_archive status and suggest alternatives
author | MWild1@gmail.com |
---|---|
date | Wed, 03 Apr 2013 18:25:55 +0000 |
parents | 2dc7d6aab48e |
children | 2454dbf940a8 |
rev | line source |
---|---|
292 | 1 #summary XEP-0055: Jabber Search |
2 #labels Stage-Alpha | |
3 | |
4 = Introduction = | |
5 | |
6 Basic implementation of [http://xmpp.org/extensions/xep-0055.html XEP-0055: Jabber Search]. | |
7 | |
8 = Details = | |
9 | |
10 This module does two things. Firsty, it allows users to opt-in to be searchable. And secondly, allows users to search the list of those users. | |
11 | |
12 = Usage = | |
13 | |
14 First copy the module to the prosody plugins directory. | |
15 | |
16 Then add "vjud" to your modules_enabled list: | |
17 {{{ | |
18 modules_enabled = { | |
19 -- ... | |
20 "vjud", | |
21 -- ... | |
22 } | |
23 }}} | |
24 | |
300
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
25 |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
26 Alternatively, you can load it as a component: |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
27 |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
28 {{{ |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
29 Component "search.example.com" "vjud" |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
30 }}} |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
31 |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
32 (Some old clients require this) |
2dc7d6aab48e
mod_vjud: Add config example of running as a component
Kim Alvefur <zash@zash.se>
parents:
292
diff
changeset
|
33 |
292 | 34 = Configuration = |
35 | |
36 | |
37 = Compatibility = | |
38 || 0.8 || Works || | |
39 || 0.9 || Works || | |
40 || trunk || Works || | |
41 | |
42 Note that the version for 0.8 and 0.9 are slightly different. | |
43 |