WebReference.com - Part 1 of Chapter 3 from Programming Jabber, O'Reilly & Associates (4/4)
[previous] |
Programming Jabber
Configuring the Jabber Server
The nature and behavior of a Jabber server is controlled by the contents of a configuration file (with a default name of jabber.xml), which you will find in the jabber-1.4.1 directory. As you can probably guess from the filename's extension, the configuration is formatted in XML, which offers a very powerful way of expressing the nature and features of your Jabber server and associated services and components.
Details on how to navigate, interpret, and edit this configuration file are given in Chapter 4; here we will just look at the basic settings that can be modified before you start up the Jabber server.
For an experimental Jabber server (such as for the purposes of this book), there isn't actually anything you need to change in the configuration. The out-of-the-box configuration settings are pretty much what we need in order to experiment with our recipes later in the book; nevertheless, let's look at some of the settings you may wish to change right now:
Server hostname
The <host/>
parameter specifies the
Jabber server's hostname. As delivered, the jabber.xml
configuration has this set to localhost:
<host><jabberd:cmdline flag="h">localhost</jabberd:cmdline></host>
You can change this to the name of your server hostname; in the case of our examples, this would be yak.
The localhost setting occurs elsewhere in the configuration too -- as a literal in the welcome message that is sent to users after a successful registration with the server. You may wish to replace this occurrence of localhost; furthermore, you will find other occurrences, but they are within sections of the configuration that are commented out in the standard delivered version of jabber.xml (specifically, administration JIDs and definitions for various add-on agents and transports; we will cover these in the next chapter).
One other place that localhost occurs is in the
<update/>
section, which is explained next.
Server software update notification mechanism
The Jabber server development team offers a facility for servers to check for updated versions of the Jabber server software. The facility is addressed with this configuration setting:
<update><jabberd:cmdline flag="h">localhost</jabberd:cmdline></update>
which causes a versioning module, mod_version, in the Jabber Session Manager (JSM), to
send a <presence/>
packet (which carries the server version -- in our case, 1.4.1)
from the server to the Jabber ID [email protected] when the Jabber server starts up.
If your server is purely internal, and/or behind a firewall, it makes
no sense to have this facility switched on (you can check for updates
to the server on the
https://www.jabber.org web site)
as the <presence/>
packet will
never reach its intended destination. You can comment it out like this:
<!--
<update><jabberd:cmdline flag="h">localhost</jabberd:cmdline></update>
-->
Automatic user directory update
The configuration as delivered contains a directive:
<vcard2jud/>
which means that any vCard data -- a vCard is a virtual "business card" containing contact information and so on -- that is maintained by a Jabber client will be automatically passed on to the central user directory (the Jabber User Directory, or JUD), defined elsewhere in the jabber.xml as the one at jabber.org, users.jabber.org.
If you've commented out the update notification mechanism because you're not going to be able to (or want to) reach the servers at jabber.org, then you might as well comment this out to avoid error messages being sent to Jabber clients when vCard data is modified:
<!--
<vcard2jud/>
-->
Alternatively, instead of commenting out the
<vcard2jud/>
,
you could comment out the definition of the
JUD service in the <browse/>
section:
<!--
<service type="jud" jid="users.jabber.org" name="Jabber User Directory">
<ns>jabber:iq:search</ns>
<ns>jabber:iq:register</ns>
</service>
-->
because the mechanism looks in the
<browse/>
section for a reference to a JUD service; if there isn't one there, no
vCard update will be sent.
NOTE: Some Jabber clients such as Jabber Instant Messenger (JIM) require vCard information to be entered when registering for a new account, which means that an attempt to contact users.jabber.org would be made the first time a user connects.
You may have noticed that the values for each of these two settings
(<host/>
and
<update/>
)
were wrapped in another tag:
<jabberd:cmdline flag="h">...</jabberd:cmdline>
This means that you can override the setting with a command-line switch
(or "flag"), in this case -h
. So, in fact, you don't
even need to modify the jabber.xml configuration
at all, if you specify your hostname when you start the server up (the
welcome message will not be changed, of course).
[previous] |
Created: January 14, 2002
Revised: January 14, 2002
URL: https://webreference.com/programming/jabber/chap3/1/4.html