Module: kamailio
Branch: master
Commit: ba3df9a65aaa60b9236f3ac6d3c748079174ecd5
URL: https://github.com/kamailio/kamailio/commit/ba3df9a65aaa60b9236f3ac6d3c7480…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-09-14T15:00:03+02:00
textops: more details for set_body_multipart() and need of msg_apply_changes()
---
Modified: modules/textops/doc/textops_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/ba3df9a65aaa60b9236f3ac6d3c7480…
Patch: https://github.com/kamailio/kamailio/commit/ba3df9a65aaa60b9236f3ac6d3c7480…
---
diff --git a/modules/textops/doc/textops_admin.xml b/modules/textops/doc/textops_admin.xml
index 3c53ba9..bdf4d28 100644
--- a/modules/textops/doc/textops_admin.xml
+++ b/modules/textops/doc/textops_admin.xml
@@ -1396,13 +1396,22 @@ if (starts_with("$rU", "+358"))
The core will take care of the last boundary ending "--". Detecting wich one is
the last and fixing the others if needed.
</para>
+ <para>
+ Note: it may be required that msg_apply_changes() from textops module
+ has to be executed if there are other operations over the new body.
+ </para>
<example>
<title><function>set_body_multipart</function> usage</title>
<programlisting format="linespecific">
...
set_body_multipart("test", "text/plain", "delimiter");
+msg_apply_changes();
+append_body_part(...);
+
...
-Will produce:
+
+# Will produce:
+
...
Content-Type: multipart/mixed;boundary="delimiter"
Mime-Version: 1.0
@@ -1457,7 +1466,9 @@ text
$var(b) = "7e Od 04 55 75 69 20 4d 61 6b 65 43 61 6c 6c"
append_body_part("$var(b)", "application/vnd.cirpack.isdn-ext", "signal;handling=required");
...
-Will append this the body:
+
+# Will append this to the body:
+
...
Content-Type: application/vnd.cirpack.isdn-ext
Content-Disposition: signal;handling=required
In daemonize.c, the ```openlog``` statement uses the name of the binary to set the syslog tag name.
For people running multiple Kamailio instances on the same host, it is desirable to use different tag names for each. E.g. if somebody is running an instance for HOMER, they might want to use a tag like ```homer-api``` for that instance.
This probably needs a new cfg parameter with a name like ```log_tag```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/780
Module: kamailio
Branch: 4.4
Commit: 18874f11abadaf300e83e2d166ebffd0246d35da
URL: https://github.com/kamailio/kamailio/commit/18874f11abadaf300e83e2d166ebffd…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-09-14T13:55:41+02:00
ndb_mongodb: elaborated the docs for usage with tls module
(cherry picked from commit 361dc128016a4bd6611e802a775f7c395905d9b7)
---
Modified: modules/ndb_mongodb/doc/ndb_mongodb_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/18874f11abadaf300e83e2d166ebffd…
Patch: https://github.com/kamailio/kamailio/commit/18874f11abadaf300e83e2d166ebffd…
---
diff --git a/modules/ndb_mongodb/doc/ndb_mongodb_admin.xml b/modules/ndb_mongodb/doc/ndb_mongodb_admin.xml
index d6e5a3c..bdfaf76 100644
--- a/modules/ndb_mongodb/doc/ndb_mongodb_admin.xml
+++ b/modules/ndb_mongodb/doc/ndb_mongodb_admin.xml
@@ -53,8 +53,13 @@
<ulink url="https://github.com/mongodb/mongo-c-driver">https://github.com/mongodb/mongo-c-driver</ulink>
</para>
<para>
- Note: if you use tls module, use at least mongo-c-driver v1.2.1
- - there were reports of issues inside earlier versions of the driver.
+ Note: if you use tls module, use at least mongo-c-driver v1.3.5
+ and compile the library by configuring it without automatic init
+ and cleanup (you have to run:
+ './configure --disable-automatic-init-and-cleanup') -- this
+ option is planned to be removed in future versions. An alternative
+ for v1.3.5 could be the patch from:
+ https://github.com/miconda/mongo-c-driver/commit/51d95009de39eaeca48491682a…
</para>
</listitem>
</itemizedlist>
Module: kamailio
Branch: 4.4
Commit: 0f247434cddc1652565b3d088166b8d444948c4f
URL: https://github.com/kamailio/kamailio/commit/0f247434cddc1652565b3d088166b8d…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-09-14T13:55:30+02:00
db_mongodb: elaborated the docs for usage with tls module
(cherry picked from commit d8ba1694a63ec65efebe9761ea6e85aef7032050)
---
Modified: modules/db_mongodb/doc/db_mongodb_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/0f247434cddc1652565b3d088166b8d…
Patch: https://github.com/kamailio/kamailio/commit/0f247434cddc1652565b3d088166b8d…
---
diff --git a/modules/db_mongodb/doc/db_mongodb_admin.xml b/modules/db_mongodb/doc/db_mongodb_admin.xml
index 94b9b12..aa3d3ef 100644
--- a/modules/db_mongodb/doc/db_mongodb_admin.xml
+++ b/modules/db_mongodb/doc/db_mongodb_admin.xml
@@ -73,8 +73,13 @@
<ulink url="https://github.com/mongodb/mongo-c-driver">https://github.com/mongodb/mongo-c-driver</ulink>
</para>
<para>
- Note: if you use tls module, use at least mongo-c-driver v1.2.1
- - there were reports of issues inside earlier versions of the driver.
+ Note: if you use tls module, use at least mongo-c-driver v1.3.5
+ and compile the library by configuring it without automatic init
+ and cleanup (you have to run:
+ './configure --disable-automatic-init-and-cleanup') -- this
+ option is planned to be removed in future versions. An alternative
+ for v1.3.5 could be the patch from:
+ https://github.com/miconda/mongo-c-driver/commit/51d95009de39eaeca48491682a…
</para>
</listitem>
</itemizedlist>