Ausgezeichnet!!!
> On Nov 28, 2022, at 6:34 AM, Giovanni Maruzzelli <gmaruzz(a)gmail.com> wrote:
>
> On Mon, Nov 28, 2022 at 11:47 AM Daniel-Constantin Mierla <miconda(a)gmail.com> wrote:
>
> the next year Kamailio World Conference is planed to return in Berlin
> for an in-person event at the usual location in the city center.
>
>
> Yeeeeeeeeeeeeeeee!!!!!
>
> Super!
>
> --
> Sincerely,
>
> Giovanni Maruzzelli
> OpenTelecom.IT
> cell: +39 347 266 56 18
>
--
Alex Balashov | Principal | Evariste Systems LLC
Tel: +1-706-510-6800 / +1-800-250-5920 (toll-free)
Web: http://www.evaristesys.com/, http://www.csrpswitch.com/
Hello,
the next year Kamailio World Conference is planed to return in Berlin
for an in-person event at the usual location in the city center.
For the moment, we would like to announce the dates, respectively June
5-7, 2023.
If nothing unexpected happens meanwhile, the call for speakers and
registrations will be open at the beginning of 2023. We aim for a
similar structure like the past in-person events, with first day
starting around noon and targeting to be tutorial-oriented, followed by
2 days of conference presentations.
More details soon!
Daniel
--
Daniel-Constantin Mierla -- www.asipto.comwww.twitter.com/miconda -- www.linkedin.com/in/miconda
### Description
We are trying to perform an outbound call through kamailio (5.6). When doing so, we are getting an expected 407 response from the trunk provider. As reponse we try to authenticate. This last invite being sent from kamailio to the trunk provider contains a bad content-length field.
if the content header field value was 1234 in the original invite, the last ones content-header field value is 12341234. So it looks like it's not cleared before its set.
### Troubleshooting
this source we used to troubleshoot:
xlog("L_WARN", "TRUNKAUTH entered, message: $mbu\n"); AT THIS POINT CONTENT_HEADER = 1234 (just an example)
if(t_check_status("401|407")) {
$avp(auser) = "testuser";
$avp(apass) = "credshere";
uac_auth();
xlog("L_WARN", "TRUNKAUTH Auth done, updated message: $mbu\n"); AT THIS POINT CONTENT_HEADER = 12341234
route(RELAY);
#### Reproduction
See troubleshooting
### Additional Information
* **Kamailio Version** - output of `kamailio -v`
```
kamailio 5.6.2 (x86_64/linux)
```
* **Operating System**:
```
kamailio 5.6.2 (x86_64/linux)
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3275
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3275(a)github.com>
Module: kamailio
Branch: 5.6
Commit: e8494799a86a0487c013ca457cac88fac4ce6501
URL: https://github.com/kamailio/kamailio/commit/e8494799a86a0487c013ca457cac88f…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2022-11-28T10:05:40+01:00
pkg/kamailio/deb: fix jammy build
---
Modified: pkg/kamailio/deb/debian/backports/jammy
Modified: pkg/kamailio/deb/jammy/control
Modified: pkg/kamailio/deb/jammy/rules
---
Diff: https://github.com/kamailio/kamailio/commit/e8494799a86a0487c013ca457cac88f…
Patch: https://github.com/kamailio/kamailio/commit/e8494799a86a0487c013ca457cac88f…
---
diff --git a/pkg/kamailio/deb/debian/backports/jammy b/pkg/kamailio/deb/debian/backports/jammy
index a469871dcf..097873e0fa 100755
--- a/pkg/kamailio/deb/debian/backports/jammy
+++ b/pkg/kamailio/deb/debian/backports/jammy
@@ -6,6 +6,12 @@ DIST=jammy
rm -rf ${DIST}
cp -r debian ${DIST}
+# No mi_xmlrpc module
+sed -i -e '/libxmlrpc-c3-dev/d' -e '/^Package: kamailio-xmlrpc-modules/,/^$/d' \
+ ${DIST}/control
+sed -i -e 's/ mi_xmlrpc[ ,$]*/ /' ${DIST}/rules
+sed -i -e '/^EXTRA_EXCLUDED_MODULES=/s/$/ mi_xmlrpc/' ${DIST}/rules
+
# No dnssec module:
sed -i -e '/libval-dev/d' -e '/^Package: kamailio-dnssec-modules/,/^$/d' \
${DIST}/control
diff --git a/pkg/kamailio/deb/jammy/control b/pkg/kamailio/deb/jammy/control
index 285c8be9a6..1c7ef64aa3 100644
--- a/pkg/kamailio/deb/jammy/control
+++ b/pkg/kamailio/deb/jammy/control
@@ -48,7 +48,6 @@ Build-Depends:
libunistring-dev,
libwebsockets-dev,
libxml2-dev,
- libxmlrpc-c3-dev,
openssl,
pkg-config,
python3,
diff --git a/pkg/kamailio/deb/jammy/rules b/pkg/kamailio/deb/jammy/rules
index 3ab41f9f68..77ff6490f6 100755
--- a/pkg/kamailio/deb/jammy/rules
+++ b/pkg/kamailio/deb/jammy/rules
@@ -26,7 +26,7 @@ EXCLUDED_MODULES=
# extra modules to skip, because they are not compilable now
# - regardless if they go to the main kamailio package or to some module package,
# they will be excluded from compile and install of all
-EXTRA_EXCLUDED_MODULES=bdb dbtext oracle pa iptrtpproxy
+EXTRA_EXCLUDED_MODULES=bdb dbtext oracle pa iptrtpproxy mi_xmlrpc
# module groups that are packaged in separate packages
# (with the name kamailio-$(group_name)-modules)
Hello Team,
**Description**
Automatic queue creation with Kazoo module in kamailio.
Noticed that , amqp_max_channels parameter creates automatic queues in Rabbitmq-server based on the channel number provided.
Expecting that , it should create only channels not queues.
**Parameter Used**
modparam("kazoo", "amqp_max_channels", 10)
**Additional Information**
Kamailio Version - output of kamailio -v
kamailio 5.5.1 (x86_64/linux)
Can any one help on this issue as why the kazoo module creates an automatic queue based on amqp_max_channels param ?
Thanks
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3285
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3285(a)github.com>