To create new wiki account, please join us on #znc at Libera.Chat and ask admins to create a wiki account for you. You can say thanks to spambots for this inconvenience.
Charset/old: Difference between revisions
>Kluka |
DarthGandalf (talk | contribs) m DarthGandalf moved page Charset to Charset/old: Charset is very different now |
(No difference)
|
Revision as of 21:28, 24 December 2014
This module is a part of ZNC. This module is shipped with ZNC by default. If you have the right "LoadMod" you can activate it with /znc LoadMod charset/old The code for this module can be found here. This module is part of ZNC since Version 1.0 |
Normalizes (i.e. converts) character encodings.
Usage
Arguments
[-force] <client_charset1[,client_charset2[,...]]> <server_charset1[,server_charset2[,...]]>
-force
makes the module convert ALL messages instead of probing whether they are already encoded using the target charset (client_charset
). This is useful for encodings with byte data that is also valid in the target charset. client_charset2
(and so forth, in prioritized order) is the charset used if the message couldn't be encoded to charset1.
Supported charsets
All charsets supported by iconv are also supported by the module. At least in theory. Use iconv --list
on your shell to get a list.
Examples
If your client understands and/or receives UTF-8 only, but some weird server you are on wants ISO-8859-1 exclusively:
/znc loadmod charset UTF-8 ISO-8859-1
If people on that server confuse basic charsets:
/znc loadmod charset UTF-8 ISO-8859-1,ISO-8859-15,WINDOWS-1252
This will make ZNC send ISO-8859-1 to the server, but convert ISO-8859-1, ISO-8859-15 and WINDOWS-1252 to UTF-8 in the other direction.
If your client sends ISO-8859-1 but you want UTF-8 to be sent to your channels:
/znc loadmod charset ISO-8859-1 UTF-8
You should also use this one if your clients sends ISO-8859-1 and you heavily use webadmin. Webadmin only displays UTF-8 (weird characters appear for other encodings).
If your client only speaks UTF-8, but the server wants CP1251 exclusively:
/znc loadmod charset -force UTF-8 CP1251
Warning
If you connect multiple clients, and send a message from client A, client B will receive the converted version of the message. This is just how ZNC works and cannot be changed by a module.