From 73a0fb418cd7f2d7850e4e0d795dab4303dade17 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Fri, 19 Jun 2015 23:13:36 +0200 Subject: [PATCH] Update comment that explains how to set up node_mb Specify settings that make sense with current ejabberd versions, and use the YAML configuration format. Also, specify the "urn:xmpp:microblog:0" namespace, as that's the microblogging node name currently defined by XEP-0277. --- src/node_mb.erl | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/node_mb.erl b/src/node_mb.erl index e48fd7967..9dc4bf81f 100644 --- a/src/node_mb.erl +++ b/src/node_mb.erl @@ -31,13 +31,17 @@ -include("jlib.hrl"). %%% @doc The module {@module} is the pep microblog PubSub plugin. -%%%

To be used, mod_pubsub must be configured : -%%% {mod_pubsub, [ % requires mod_caps -%%% {access_createnode, pubsub_createnode}, -%%% {plugins, ["default", "pep","mb"]}, -%%% {pep_mapping, [{"urn:xmpp:microblog", "mb"}]} -%%% ]}, -%%%

+%%%

To be used, mod_pubsub must be configured:

+%%% mod_pubsub:
+%%%   access_createnode: pubsub_createnode
+%%%   ignore_pep_from_offline: false
+%%%   plugins:
+%%%     - "flat"
+%%%     - "hometree"
+%%%     - "pep" # Requires mod_caps.
+%%%   pep_mapping:
+%%%     "urn:xmpp:microblog:0": "mb"
+%%% 

%%%

PubSub plugin nodes are using the {@link gen_pubsub_node} behaviour.

-export([init/3, terminate/2, options/0, features/0,