Table of Contents
db_url
(str)
rlpres_db_url
(str)
xcap_db_url
(str)
db_mode
(int)
xcap_table
(str)
rlsubs_table
(str)
rlpres_table
(str)
clean_period
(int)
rlpres_clean_period
(int)
waitn_time
(int)
notifier_poll_rate
(int)
notifier_processes
(int)
max_expires
(int)
expires_offset
(int)
hash_size
(int)
xcap_root
(str)
integrated_xcap_server
(int)
to_presence_code
(int)
rls_event
(str)
outbound_proxy
(str)
server_address
(str)
max_notify_body_length
(int)
fetch_rows
(integer)
disable_remote_presence
(integer)
max_backend_subs
(integer)
List of Examples
db_url
parameterrlpres_db_url
parameterxcap_db_url
parameterdb_mode
parameterxcap_table
parameterrlsubs_table
parameterrlpres_table
parameterclean_period
parameterrlpres_clean_period
parameterwaitn_time
parameternotifier_poll_rate
parameternotifier_processes
parametermax_expires
parameterexpires_offset
parameterhash_size
parameterhash_size
parameterintegrated_xcap_server
parameterto_presence_code
parameterrls_event
parameteroutbound_proxy
parameterserver_address
parametermax_notify_body_length
parameterfetch_rows
parameterdisable_remote_presence
parametermax_backend_subs
parameterrls_handle_subscribe
usagerls_handle_notify
usagerls_update_subs
usageTable of Contents
db_url
(str)
rlpres_db_url
(str)
xcap_db_url
(str)
db_mode
(int)
xcap_table
(str)
rlsubs_table
(str)
rlpres_table
(str)
clean_period
(int)
rlpres_clean_period
(int)
waitn_time
(int)
notifier_poll_rate
(int)
notifier_processes
(int)
max_expires
(int)
expires_offset
(int)
hash_size
(int)
xcap_root
(str)
integrated_xcap_server
(int)
to_presence_code
(int)
rls_event
(str)
outbound_proxy
(str)
server_address
(str)
max_notify_body_length
(int)
fetch_rows
(integer)
disable_remote_presence
(integer)
max_backend_subs
(integer)
The modules is a Resource List Server implementation following the specification in RFC 4662 and RFC 4826.
The server is independent from local presence servers, retrieving presence information with Subscribe-Notify messages.
The module uses the presence module as a library, as it requires a resembling mechanism for handling Subscribe. Therefore, in case the local presence server is not collocated on the same machine with the RL server, the presence module should be loaded in a library mode only (see doc for presence module).
It handles subscription to lists in an event independent way.The default event is presence, but if some other events are to be handled by the server, they should be added using the module parameter "rls_events".
It works with XCAP server for storage. There is also the possibility to configure it to work in an integrated_xcap server mode, when it only queries database for the resource lists documents. This is useful in a small architecture when all the clients use an integrated server and there are no references to exterior documents in their lists.
The same as presence module, it has a caching mode with periodical update in database for subscribe information. The information retrieved with Notify messages is stored in database only.
The following modules must be loaded before this module:
a database module.
sl.
tm.
presence- in a library mode.
pua.
The database url.
Default value is “mysql://kamailio:kamailiorw@localhost/kamailio”.
Example 1.1. Set db_url
parameter
... modparam("rls", "db_url", "dbdriver://username:password@dbhost/dbname") ...
The rlpres (rls_presentity table) database url. This parameter only needs to be specified if the rls_watchers table and rls_presentity tables are in different databases. rls_presentity is used to cache the bodies of back-end NOTIFY requests until an RLS NOTIFY can be sent. On a multi-server system having a single cache for all active servers can cause issues if both servers try to send RLS NOTIFY requests at the same time. This parameter enables each server to have its own (possibly local) rls_presentity table.
Default value is a mirror of the “db_url” setting.
Example 1.2. Set rlpres_db_url
parameter
... modparam("rls", "rlpres_db_url", "dbdriver://username:password@dbhost/dbname") ...
The xcap database url. This parameter only needs to be specified if the rls db and integerated xcap server db have different urls.
Default value is a mirror of the “db_url” setting.
Example 1.3. Set xcap_db_url
parameter
... modparam("rls", "xcap_db_url", "dbdriver://username:password@dbhost/dbname") ...
The module supports 2 modes of operation, high speed memory based storage (mode 0), and database only (mode 2) where all data is stored in a database, allowing scalability at the expense of speed. Mode 1 is reserved.
Default value is “0”
The name of the xcap table in which the integrated server or the xcap_client module writes. If integrated_xcap_server parameter not set, the name of the table must be the same as the one set for the xcap_client module.
Default value is “xcap”.
The name of the db table where resource lists subscription information is stored.
Default value is “rls_watchers”.
Example 1.6. Set rlsubs_table
parameter
... modparam("rls", "rlsubs_table", "rls_subscriptions") ...
The name of the db table where notified event specific information is stored.
Default value is “rls_presentity”.
The period at which to check for expired information. 0 means do not check.
Default value is “100”.
The period at which to check for expired rls_presentity information. -1 means do not use (clean_period) is used instead. 0 means do not check. This option can be used when you want to check rls_presentity and rls_watchers on different timeouts. This is useful when they are in different databases.
Default value is “-1”.
The maximum time period that RLS NOTIFY requests will be buffered for. The server will attempt to send NOTIFY requests with the updated presence state of the subscribed list or watcher information within this many seconds of a change occurring.
Default value is “5”.
The number of times per second that the notifier processes should check for work. Approximately 1/(waitn_time * notifier_poll_rate * notifier_processes) of the pending updates will be sent each time a notifier process runs.
Separate notifier processes are only run when db_mode is 2 (DB only mode).
Default value is “10”.
The number of notifier processes that should be started.
Separate notifier processes are only run when db_mode is 2 (DB only mode).
Default value is “1”.
The maximum accepted expires for a subscription to a list.
Default value is “7200”.
This paramater only has an effect when the db_mode is DB_ONLY (mode 2). When expired subscribers are checked for deletion from the database, those that have a value in the expires column which is less than current_time - expires_offset are matched. Hence when an offset of zero is used, all those that expire prior the current time will be deleted. If an offset of 't' is used, only those that expired more than t seconds ago are deleted from the database. Negative offsets are treated as though an offset of zero was specifed.
Default value is “0”.
The dimension of the hash table used to store subscription to a list. This parameter will be used as the power of 2 when computing table size.
Default value is “9 (512)”.
The address of the xcap server.
Default value is “NULL”.
Example 1.16. Set hash_size
parameter
... modparam("rls", "xcap_root", "http://192.168.2.132/xcap-root:800") ...
This parameter should be set if only integrated xcap servers are used to store resource lists.
Default value is “0”.
Example 1.17. Set integrated_xcap_server
parameter
... modparam("rls", "integrated_xcap_server", 1) ...
The code to be returned by rls_handle_subscribe function if the processed Subscribe is not a resource list Subscribe. This code can be used in an architecture with presence and rls servers collocated on the same machine, to call handle_subscribe on the message causing this code.
Default value is “0”.
The default event that RLS handles is presence. If some other events should also be handled by RLS they should be added using this parameter. It can be set more than once.
Default value is “"presence"”.
The SIP address where to send RLS subscriptions (outbound proxy address as SIP URI).
Default value is “NULL”.
Example 1.20. Set outbound_proxy
parameter
... modparam("rls", "outbound_proxy", "sip:presence.kamailio.org") ...
The address of the server that will be used as a contact in sent Subscribe requests and 200 OK replies for Subscribe requests for RLS. It is a mandatory parameter.
Example 1.21. Set server_address
parameter
... modparam("rls", "server_address", "sip:rls@ip.address.ofyour.proxy:5060") ...
The maximum size that the body of a NOTIFY message may be. If set to 0 (the default), no size limit is applied. Note that this refers only to the body, not the complete NOTIFY message.
Example 1.22. Set max_notify_body_length
parameter
... modparam("rls", "max_notify_body_length", 32000) ...
Number of rows to be loaded in one step from database.
Default value is 500.
When set to a non-zero value RLS will not perform back-end SUBSCRIBEs to non-local presentities. When people have large contact lists RLS will make lots of back-end subscriptions for each local subscriber. This can be a lot of traffic, and if the contact lists contain non-local (as in not on this Kamailio server or cluster) contacts this can result in a lot of Internet traffic. Setting this option to a non-zero value prevents RLS from performing back-end SUBSCRIBEs for remote presentities.
Default value is 0
Example 1.24. Set disable_remote_presence
parameter
... modparam("rls", "disable_remote_presence", 1) ...
When set to a non-zero value RLS will limit the number of back-end SUBSCRIBEs for each RLS SUBSCRIBE to this value. Leaving this at the default of zero means no limit. When people have large contact lists RLS will make lots of back-end subscriptions. This can easily overload a system. This option allows you to limit the number of back-end SUBSCRIBEs to help prevent overload.
Default value is 0
This function detects if a Subscribe message should be handled by RLS. If not it replies with the configured to_presence_code. If it is, it extracts the dialog info and sends aggregate Notify requests with information for the list.
By default this function uses the From: URI from the SUBSCRIBE request as the Watcher URI. The optional watcher_uri parameter can be used to specify a different Watcher URI, possibly taken from a SIP header like P-Asserted-Identity:.
This function can be used from REQUEST_ROUTE.
Example 1.26. rls_handle_subscribe
usage
... For presence and rls on the same machine: modparam("rls", "to_presence_code", 10) if(is_method("SUBSCRIBE")) { $var(ret_code)= rls_handle_subscribe(); if($var(ret_code)== 10) handle_subscribe(); t_release(); } For rls only: if(is_method("SUBSCRIBE")) { rls_handle_subscribe(); t_release(); } ...
This function can be used from REQUEST_ROUTE.
This function can be used in configuration to trigger updates to resource list subscriptions (for example, after the contents of a resource list has changes).
Parameters:
uri - the uri of the user who made the change and whose resource list subscriptions should be updated
event - the event package (e.g. presence).
This function can be used from ANY_ROUTE.
Example 1.28. rls_update_subs
usage
... Within event_route[xhttp:request]: case "PUT": xcaps_put("$var(uri)", "$var(doc_uri)", "$rb"); if($xcapuri(u=>auid)=~"pres-rules") { pres_update_watchers("$var(uri)", "presence"); pres_refresh_watchers("$var(uri)", "presence", 1); } else if ($xcapuri(u=>auid)=~"resource-lists" || $xcapuri(u=>auid)=~"rls-services") { rls_update_subs("$var(uri)", "presence"); } exit; break; ...
The module requires 2 tables in Kamailio database: rls_presentity and rls_watchers.The SQL syntax to create them can be found in rls-create.sql script in the database directories in the kamailio/scripts folder. You can also find the complete database documentation on the project webpage, http://www.kamailio.org/docs/db-tables/kamailio-db-devel.html.