diff options
Diffstat (limited to 'doc/guide.tex')
-rw-r--r-- | doc/guide.tex | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/doc/guide.tex b/doc/guide.tex index 036ec36e..0318d893 100644 --- a/doc/guide.tex +++ b/doc/guide.tex @@ -3657,17 +3657,26 @@ Examples: ... ]}. \end{verbatim} -\item The in-band registration of new accounts can be prohibited by changing the - \option{access} option. If you really want to disable all In-Band Registration - functionality, that is changing passwords in-band and deleting accounts - in-band, you have to remove \modregister{} from the modules list. In this - example all In-Band Registration functionality is disabled: +\item This configuration prohibits usage of In-Band Registration + to create or delete accounts, + but allows existing accounts to change the password: \begin{verbatim} {access, register, [{deny, all}]}. {modules, [ ... + {mod_register, [{access, register}]}, + ... + ]}. +\end{verbatim} +\item + This configuration disables all In-Band Registration + functionality: create, delete accounts and change password: +\begin{verbatim} +{modules, + [ + ... %% {mod_register, [{access, register}]}, ... ]}. |