Hello, Let me present a short overview of Jabber module, how is working and what you need to run it. The Jabber module needs a local Jabber server for co-working with it. Each SIP user who wants to send or to receive messages to/from Jabber network must have an associated Jabber ID on local Jabber server. This association between SIP users and local Jabber users is kept in a MySQL database. Look in 'doc/' folder of the modules for SQL script which creates the database. In table jusers you must have entries like +------+--------+------------+----------------------------+------+ | juid | jab_id | jab_passwd | sip_id | type | +------+--------+------------+----------------------------+------+ | 1 | juser | xxxxxx | sip:suser@sipserver.com | 0 | +------+--------+------------+----------------------------+------+ for each pair SIP user - Jabber user. TYPE=0 means that the Jabber gateway account is enabled. In 'doc/' are some scripts which can help you to create the associated Jabber account for a SIP user. In 'doc/web' you find a PHP script which can manage associated Jabber/ICQ/MSN/AOL/Yahoo accounts for a SIP user. Of course you have to set the appropriate values at the beginning of the scripts. Jabber module exports functions for registering/unregistering with local Jabber server, sending a message, joining/leaving a Jabber conference. Take a look at Readme file of the module to see the exported methods and the parameters that should be set. Next step is to create the SER's script to use Jabber module and to route the messages. A start point is the sample config file from 'doc/'. To make ser to recognize the messages for Jabber network you need an alias for your SIP server, like jabber.sipserve.com (each SIP message for jabber.sipserver.com will be managed by Jabber module). The most interesting thing is the Jabber address mapping. That is encoded in user part of the destination address. Is something like juserjabberserver.com is a special character (it must not to be a SIP reserved one) that can be specified in 'jalias' module's parameter. Please do not log on Jabber server using a Jabber client and the same Jabber ID as the associated ID for your SIP address. Best regards, Daniel P.S. I strongly suggest to take the last version of the module from CVS (it is the most stable version). But the other modules could be unstable, so is better to keep the last stable version of SER and upgrade only the Jabber module.