Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlexey Shchepin <alexey@process-one.net>2004-09-11 00:57:00 +0400
committerAlexey Shchepin <alexey@process-one.net>2004-09-11 00:57:00 +0400
commite0ede61e0ff46d72542ffd001f7b3e35f1184431 (patch)
tree2c4d64ec7d2b0565657e9250fab1c644f8794bc8 /doc
parent210a9a689b0435f70e5d58b40dc9c97250f2bfcf (diff)
* tools/ejabberdctl: Added call to "exec" (thanks to Sergei
Golovan) * src/msgs/ru.msg: Updated (thanks to Sergei Golovan) * src/mod_vcard.erl: Support for searching of prefix substring and limiting of result items (thanks to Sergei Golovan) * src/mod_offline.erl: Support for message expiration (JEP-0023) (thanks to Sergei Golovan) * src/jlib.hrl: Added NS_EXPIRE macros (thanks to Sergei Golovan) * src/ejabberd_logger_h.erl: Added reopen_log/0 (thanks to Sergei Golovan) * src/ejabberd_ctl.erl: Added return codes, updated "reopen-log" command, added "delete-expired-messages" and "status" commands (thanks to Sergei Golovan) * doc/guide.tex: Updated (thanks to Sergei Golovan) SVN Revision: 264
Diffstat (limited to 'doc')
-rw-r--r--doc/guide.tex4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/guide.tex b/doc/guide.tex
index d8c758572..f656d9323 100644
--- a/doc/guide.tex
+++ b/doc/guide.tex
@@ -1131,6 +1131,8 @@ Options:
\titem{search} Specifies wheather search is enabled (value is \term{true}, default) or
disabled (value is \term{false}) by the service. If \term{search} is set to \term{false},
option \term{host} is ignored and service does not appear in Jabber Discovery items.
+\titem{matches} Limits the number of reported search results. If value is set to
+\term{infinity} then all search results are reported. Default value is \term{30}.
\end{description}
Example:
@@ -1138,7 +1140,7 @@ Example:
{modules,
[
...
- {mod_vcard, [{search, false}]}
+ {mod_vcard, [{search, false}, {matches, 20}]}
...
]}.
\end{verbatim}