/usr/share/doc/jabber-irc/README.Debian is in jabber-irc 0.4cvs20080505-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | jabber-irc for Debian
---------------------
To enable this service, you need to edit /etc/default/jabber-irc and
set ENABLED to 1. However before this, you need to edit your main
Jabber server's configuration.
Main Jabber server configuration files
In order to have your main Jabber server accept connections from jabber-irc,
you have to configure it accordingly.
For jabberd server, add the following to the <service> section of its
configuration file.
<service id="irc">
<host>irc.localhost</host>
<accept>
<ip>127.0.0.1</ip>
<port>9000</port>
<secret>secret</secret>
<timeout>30</timeout>
</accept>
</service>
Be sure to replace "localhost" with the full host name of your server
if you want users of other Jabber servers to be able to use this
transport. Also, the host name of the transport has to be resolveable
via DNS then.
In order to advertise the IRC transport's services to the Jabber
clients, add the following to the <browse> section of the main jabberd
configuration file.
<service type="irc" jid="irc.localhost" name="IRC Gateway">
<ns>jabber:iq:gateway</ns>
</service>
Once the above has been done you will need to restart your Jabber server
for it to use the new configuration. Upon restart the new service
(if ENABLED) will start also.
Note: if you change any of the above settings such as any host (localhost),
port, or secret settings, you will also need to make the same change in
/etc/jabber/jabber-xmpp.conf
-- Alexey Nezhdanov <snakeru@users.sourceforge.net>, Sat, 21 Aug 2004 08:19:00 +0400
|