$FreeBSD$
--- modules/registrar/doc/registrar_user.sgml
+++ modules/registrar/doc/registrar_user.sgml
@@ -29,7 +29,12 @@
- sl - Stateless Replies.
+ sl - Stateless Replies (if use_tm is 0).
+
+
+
+
+ tm - Transaction module (if use_tm is 1).
@@ -321,6 +326,31 @@
modparam("registrar", "retry_after", 30)
...
+
+
+
+
+ use_tm (integer)
+
+ If set to 1 then the registrar will use t_reply() function from
+ the tm module instead of sl_send_reply() function from the sl
+ module for sending replies. This allows registration transactions to be processed
+ statefully if necessary. When set to 1 script writer need to ensure that transaction
+ exists when save() is called, usually by calling
+ t_newtran().
+
+
+
+ Default value is 0.
+
+
+
+ Set use_tm parameter
+
+...
+modparam("registrar", "use_tm", 1)
+...
+