Changeset 38
- Timestamp:
- 02/08/04 16:30:16 (5 years ago)
- Files:
-
- trunk/jjigw.xml.example (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jjigw.xml.example
r32 r38 3 3 <jjigw> 4 4 5 <!-- 6 Settings for connection with the Jabber server. 7 8 For jabberd2 this should match <local/> section of router.xml. 9 10 For jabberd 1.4 a <service/> section for jjigw should be added to jabber 11 xml. It should contain <host/> element for each domain (network jid defined below) 12 to be handled by the component and <accept/> element with <ip/>, <port/>, <secret/> 13 children matching the settings below. 14 --> 5 15 <connect> 6 16 <host>127.0.0.1</host> … … 9 19 </connect> 10 20 21 <!-- currently only the first network will work, so choose it carefully :) --> 22 23 <!-- 24 freenode network with #pld channel configured to use ISO 8859-2 encoding. 25 Other channels will still be available, but only us-ascii characters will work. 26 --> 27 <network jid="freenode.localhost"> 28 <server>irc.freenode.net</server> 29 <channel encoding="iso-8859-2">#pld</channel> 30 </network> 31 32 <!-- 33 Polish IRCNet for Polish users :) 34 This settings are fine here in Poland, where most people use ISO 8859-2, 35 but may be inappropriate for other IRCNet users and channels. 36 --> 11 37 <network jid="ircnet.localhost" encoding="iso-8859-2"> 12 38 <server>warszawa.irc.pl</server> … … 15 41 </network> 16 42 43 <!-- 44 A Russian IRC network, alows 8bit characters in nicknames. 45 --> 46 <network jid="rusnet.localhost" encoding="koi8-r" nicks_8bit="yes"> 47 <server>irc.spbu.ru</server> 48 </network> 49 17 50 </jjigw>
