Changeset 38

Show
Ignore:
Timestamp:
02/08/04 16:30:16 (5 years ago)
Author:
jajcus
Message:

- example updated

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jjigw.xml.example

    r32 r38  
    33<jjigw> 
    44 
     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--> 
    515<connect> 
    616        <host>127.0.0.1</host> 
     
    919</connect> 
    1020 
     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  --> 
    1137<network jid="ircnet.localhost" encoding="iso-8859-2"> 
    1238        <server>warszawa.irc.pl</server> 
     
    1541</network> 
    1642 
     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 
    1750</jjigw>