diff options
author | Badlop <badlop@process-one.net> | 2011-07-05 16:32:48 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2011-07-05 16:33:06 +0200 |
commit | caa84e273192aa128f52f677a258577080247817 (patch) | |
tree | eb69e77692cf71627fca18dd074d6f4bef9c4d47 /doc | |
parent | Merge branch '2.1.x' of git+ssh://git@gitorious.process-one.net/ejabberd/main... (diff) |
Fix reference to 'admin' ACL name (thanks to Samuel Wejeus)(EJAB-1476)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guide.tex | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/guide.tex b/doc/guide.tex index 0542a6bf2..29baec4be 100644 --- a/doc/guide.tex +++ b/doc/guide.tex @@ -584,8 +584,8 @@ ejabberdctl register admin1 example.org FgT5bk3 \end{enumerate} \item Edit the \ejabberd{} configuration file to give administration rights to the XMPP account you created: \begin{verbatim} -{acl, admins, {user, "admin1", "example.org"}}. -{access, configure, [{allow, admins}]}. +{acl, admin, {user, "admin1", "example.org"}}. +{access, configure, [{allow, admin}]}. \end{verbatim} You can grant administrative privileges to many XMPP accounts, and also to accounts in other XMPP servers. @@ -2737,7 +2737,7 @@ Examples: \begin{itemize} \item Only administrators can send announcements: \begin{verbatim} -{access, announce, [{allow, admins}]}. +{access, announce, [{allow, admin}]}. {modules, [ @@ -2751,9 +2751,9 @@ Examples: \begin{verbatim} {acl, direction, {user, "big_boss", "example.org"}}. {acl, direction, {user, "assistant", "example.org"}}. -{acl, admins, {user, "admin", "example.org"}}. +{acl, admin, {user, "admin", "example.org"}}. -{access, announce, [{allow, admins}, +{access, announce, [{allow, admin}, {allow, direction}]}. {modules, @@ -3468,10 +3468,10 @@ Examples: be stored in /var/www/muclogs, and the local time will be used. Finally, the top link will be the default \verb|<a href="/">Home</a>|. \begin{verbatim} -{acl, admins, {user, "admin1", "example.org"}}. -{acl, admins, {user, "admin2", "example.net"}}. +{acl, admin, {user, "admin1", "example.org"}}. +{acl, admin, {user, "admin2", "example.net"}}. -{access, muc_log, [{allow, admins}, +{access, muc_log, [{allow, admin}, {deny, all}]}. {modules, @@ -5222,11 +5222,11 @@ Example configurations: administer the virtual host \jid{example.com}. The account `\jid{reviewer@example.com}' can browse that vhost in read-only mode. \begin{verbatim} -{acl, admins, {user, "admin", "example.net"}}. -{host_config, "example.com", [{acl, admins, {user, "admin", "example.com"}}]}. +{acl, admin, {user, "admin", "example.net"}}. +{host_config, "example.com", [{acl, admin, {user, "admin", "example.com"}}]}. {host_config, "example.com", [{acl, viewers, {user, "reviewer", "example.com"}}]}. -{access, configure, [{allow, admins}]}. +{access, configure, [{allow, admin}]}. {access, webadmin_view, [{allow, viewers}]}. {hosts, ["example.org"]}. |