Hello,
I am planning to release next week (likely on Friday 2nd October) the next minor version out of branch 5.2, version 5.2.8.
Backports of fixed issues from git master will be integrated as usual. If you are aware of new issues which were not yet reported, let us know (by creating an issue on the tracker).
Unless major regressions are discovered after the release, this will be the last release of the 5.2 stable branch. The current stable branches 5.3 and 5.4 will continue to be maintained.
Cheers,
Henning
--
Henning Westerholt - https://skalatan.de/blog/
Kamailio services - https://gilawa.com<https://gilawa.com/>
Hi,
I am using Kamailio 5.4.1 installed from the packages on Ubuntu 18.04.
When I define 'modparam("tls", "config", "<folder>")', Kamailio fails to
start:
ERROR: tls [tls_config.c:418]: tls_load_config(): cannot make tmp file
configrcCczj
ERROR: <core> [core/sr_module.c:849]: init_mod(): Error while initializing
module tls (/usr/lib/x86_64-linux-gnu/kamailio/modules/tls.so)
I checked the tls_load_config() function and found that when a folder is
defined in the 'config' parameter, the function tries to open a temporary
file in the working directory. I believe that the working directory at that
point is the folder where Kamailio was started: /usr/sbin.
I succeeded to launch Kamailio in two ways:
Method 1: copy 'kamailio' to /tmp and modify kamalio.service accordingly.
This experiment result made me think that the working folder is the folder
where kamailio is started.
Method 2: add Kamailio command line parameter "-w /tmp"
(I also tried to define the Systemd 'WorkingDirectory' parameter but
it didn't have any effect.)
I think that the ultimate solution for this problem is to modify the
tls_load_config() function in such a way that it will open the temporary
file in a folder that is intended for the temporary files. For example, the
/tmp folder in Linux and *BSD systems. I guess that /tmp is a good place in
MacOS as well.
Best regards,
Leonid Fainshtein
Hi Guys
I am trying to add a custom record route so i have added
record_route_preset("mydomain:5061;transport=tls", "myip:5060");
yet kamailio is still not adding it in the sip message
what am i doing wrong?