summaryrefslogtreecommitdiff
path: root/doc/guide.tex
diff options
context:
space:
mode:
authorMickaël Rémond <mickael.remond@process-one.net>2006-06-07 08:38:37 +0000
committerMickaël Rémond <mickael.remond@process-one.net>2006-06-07 08:38:37 +0000
commit9dcd3f40805033a13bbfdbfab222fc0af11ad8c9 (patch)
tree24f03d632831f1a7edfe5e1b7176e6b3b9781764 /doc/guide.tex
parent* src/web/ejabberd_http.erl: The web module now accepts HTTP (diff)
* src/mod_pubsub/mod_pubsub.erl: Support for pubsub node
creation ACL. It is now possible to limit the node creation rights using an ACL from ejabberd config file (Thanks to Christophe Romain) (EJAB-104). * doc/guide.tex: Likewise. * src/ejabberd.cfg.example. SVN Revision: 577
Diffstat (limited to 'doc/guide.tex')
-rw-r--r--doc/guide.tex6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/guide.tex b/doc/guide.tex
index 3bf52084..99e2df91 100644
--- a/doc/guide.tex
+++ b/doc/guide.tex
@@ -1913,6 +1913,9 @@ Options:
\titem{served\_hosts} \ind{options!served\_hosts}To specify which hosts needs to
be served, you can use this option. If absent, only the main \ejabberd{}
host is served. % Not a straigtforward description! This needs to be improved!
+\titem{access\_createnode} \ind{options!access\_createnode}
+ Restricts which users are allowed to create pubsub nodes using ACL and ACCESS.
+ Default: \term{pubsub\_createnode}.
\end{description}
Example:
@@ -1921,7 +1924,8 @@ Example:
[
...
{mod_pubsub, [{served_hosts, ["example.com",
- "example.org"]}]}
+ "example.org"]},
+ {access_createnode, pubsub_createnode}]}
...
]}.
\end{verbatim}