aboutsummaryrefslogtreecommitdiff
path: root/doc/guide.tex
diff options
context:
space:
mode:
authorAlexey Shchepin <alexey@process-one.net>2007-06-22 15:25:27 +0000
committerAlexey Shchepin <alexey@process-one.net>2007-06-22 15:25:27 +0000
commit57e3d9fda7a2fd22d0afed754cd85b6e93b91a26 (patch)
tree6ad79d10d74406a3a358dfe1409a1c63b92be8e7 /doc/guide.tex
parent* src/mod_disco.erl: Don't override accumulated value in (diff)
* src/mod_irc/mod_irc.erl: Added an option for default IRC
encoding (thanks to Badlop) * doc/guide.tex: Updated SVN Revision: 789
Diffstat (limited to 'doc/guide.tex')
-rw-r--r--doc/guide.tex5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/guide.tex b/doc/guide.tex
index 63c1b063e..dbc70a8fb 100644
--- a/doc/guide.tex
+++ b/doc/guide.tex
@@ -1839,18 +1839,19 @@ Options:
\hostitem{irc}
\titem{access} \ind{options!access}This option can be used to specify who
may use the IRC transport (default value: \term{all}).
+\titem{default\_encoding} \ind{options!defaultencoding}Set the default IRC encoding (default value: \term{"koi8-r"}).
\end{description}
Examples:
\begin{itemize}
\item In the first example, the IRC transport is available on (all) your
virtual host(s) with the prefix `\jid{irc.}'. Furthermore, anyone is
- able to use the transport.
+ able to use the transport. The default encoding is set to "iso8859-15".
\begin{verbatim}
{modules,
[
...
- {mod_irc, [{access, all}]},
+ {mod_irc, [{access, all}, {default\_encoding, "iso8859-15"}]},
...
]}.
\end{verbatim}