diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guide.html | 4 | ||||
-rw-r--r-- | doc/guide.tex | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/guide.html b/doc/guide.html index 33108e837..01e0d6f14 100644 --- a/doc/guide.html +++ b/doc/guide.html @@ -847,7 +847,7 @@ To enable anonymous login on all virtual hosts: {anonymous_protocol, login_anon}]}. </PRE><LI CLASS="li-itemize">To enable anonymous login and internal authentication on a virtual host: <PRE CLASS="verbatim"> -{host_config, "public.example.org", [{auth_method, [anonymous,internal]}, +{host_config, "public.example.org", [{auth_method, [internal,anonymous]}, {anonymous_protocol, login_anon}]}. </PRE><LI CLASS="li-itemize">To enable SASL Anonymous on a virtual host: <PRE CLASS="verbatim"> @@ -860,7 +860,7 @@ To enable anonymous login on all virtual hosts: </PRE><LI CLASS="li-itemize">To enable SASL Anonymous, anonymous login, and internal authentication on a virtual host: <PRE CLASS="verbatim"> -{host_config, "public.example.org", [{auth_method, [anonymous,internal]}, +{host_config, "public.example.org", [{auth_method, [internal,anonymous]}, {anonymous_protocol, both}]}. </PRE></UL> <!--TOC subsection Access Rules--> diff --git a/doc/guide.tex b/doc/guide.tex index a114019ab..3635e5b59 100644 --- a/doc/guide.tex +++ b/doc/guide.tex @@ -696,7 +696,7 @@ Examples: \end{verbatim} \item To enable anonymous login and internal authentication on a virtual host: \begin{verbatim} -{host_config, "public.example.org", [{auth_method, [anonymous,internal]}, +{host_config, "public.example.org", [{auth_method, [internal,anonymous]}, {anonymous_protocol, login_anon}]}. \end{verbatim} \item To enable SASL Anonymous on a virtual host: @@ -712,7 +712,7 @@ Examples: \item To enable SASL Anonymous, anonymous login, and internal authentication on a virtual host: \begin{verbatim} -{host_config, "public.example.org", [{auth_method, [anonymous,internal]}, +{host_config, "public.example.org", [{auth_method, [internal,anonymous]}, {anonymous_protocol, both}]}. \end{verbatim} \end{itemize} |