diff mod_vjud/README.markdown @ 1803:4d73a1a6ba68

Convert all wiki pages to Markdown
author Kim Alvefur <zash@zash.se>
date Fri, 28 Aug 2015 18:03:58 +0200
parents mod_vjud/README.wiki@29f3d6b7ad16
children dd806ebeb2fc
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_vjud/README.markdown	Fri Aug 28 18:03:58 2015 +0200
@@ -0,0 +1,55 @@
+---
+labels:
+- 'Stage-Alpha'
+summary: 'XEP-0055: Jabber Search'
+...
+
+Introduction
+============
+
+Basic implementation of [XEP-0055: Jabber
+Search](http://xmpp.org/extensions/xep-0055.html).
+
+Details
+=======
+
+This module has two modes. One mode requires users to opt-in to be
+searchable, then allows users to search the list of those users. The
+second mode allows search accross all users.
+
+Usage
+=====
+
+First copy the module to the prosody plugins directory.
+
+Then add "vjud" to your modules\_enabled list:
+
+        modules_enabled = {
+                        -- ...
+                        "vjud",
+                        -- ...
+            }
+
+Alternatively, you can load it as a component:
+
+        Component "search.example.com" "vjud"
+
+(Some old clients require this)
+
+Configuration
+=============
+
+  Option       Default    Description
+  ------------ ---------- --------------------------------
+  vjud\_mode   "opt-in"   Defines how the module behaves
+
+Compatibility
+=============
+
+  ------- ---------------------------------
+  0.8     Works, but only the opt-in mode
+  0.9     Works
+  trunk   Works
+  ------- ---------------------------------
+
+Note that the version for 0.8 and 0.9 are slightly different.