Hi,
I'm trying to register to a SIP provider (v5.2.4), so I added in kamailio.cfg:
...
loadmodule "uac.so"
...
modparam("rr", "append_fromtag", 1)
modparam("uac", "credential", "user:host_provider_ip:password")
modparam("uac", "reg_retry_interval", 300)
Seems that nothing happens after a service restart.
I also tried :
`kamcmd uac.reg_dump
error: 500 - command uac.reg_dump not found`
Is there something I misunderstood ?
Thanks in advanced !
--
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/2036
Module: kamailio
Branch: master
Commit: 4acc8aa71b50efc0f8ec073d711dda27b928e991
URL: https://github.com/kamailio/kamailio/commit/4acc8aa71b50efc0f8ec073d711dda2…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2019-08-19T11:47:13+02:00
modules: readme files regenerated - lost ... [skip ci]
---
Modified: src/modules/lost/README
---
Diff: https://github.com/kamailio/kamailio/commit/4acc8aa71b50efc0f8ec073d711dda2…
Patch: https://github.com/kamailio/kamailio/commit/4acc8aa71b50efc0f8ec073d711dda2…
---
diff --git a/src/modules/lost/README b/src/modules/lost/README
index cbb49366e7..357c41d388 100644
--- a/src/modules/lost/README
+++ b/src/modules/lost/README
@@ -230,9 +230,11 @@ var(uri)\n");
https://www.digitalocean.com/community/questions/how-to-upgrade-curl-in
-centos6
- Note: http_client_query exported by the http_client API returns the
- first line of the HTTP response (query_params.oneline = 1), but the
- lost module requires the complete response message, which requires
- query_params.oneline set to 0. In the case lost_query is used with the
- default http_client API, dereferencing location via HTTP provided with
- the Geolocation header causes an error.
+ Note: http_client_query exported by the http_client API returns by
+ default the first line of the HTTP response (query_params.oneline = 1),
+ but the lost module requires the complete response message, which
+ requires query_params.oneline set to 0. In the case lost_query is used
+ with the default http_client API, dereferencing location via HTTP
+ provided with the Geolocation header causes an error. Therefore, to
+ work properlu=y, it requires to set http_client module parameter
+ query_result to 0.