Re: [SR-Users] (no subject)

2022-03-26 Thread Karsten Horsmann
Hi, Fred's mid register example could be a starting point https://github.com/fredposner/scripts/blob/master/kamailio/mid-registrar.cfg So you forward your registrations to your pbx. If I understand you right. Needs tls but for starting and understanding plain communication helps you with tools

Re: [SR-Users] (no subject)

2021-01-31 Thread Karsten Horsmann
Hi Daniel, Take a look at havfo nice config example with all you need to play around with RTC and websocket. There are many moving parts to cover. https://github.com/havfo/WEBRTC-to-SIP Kind regards Karsten Horsmann Daniel Hermann N'don schrieb am Fr., 8. Jan. 2021, 11:08: > Hello everyone,

Re: [SR-Users] (no subject)

2020-11-09 Thread Antony Stone
On Monday 09 November 2020 at 11:06:42, ahmed moghazy wrote: > Hello, > When i make a call from specific user to another it didnt make call and it > gave missed call to another one after a minute so the call doesnot > complete i dont know why , Thank you. We don't know why either. Please give

Re: [SR-Users] (no subject)

2020-04-20 Thread Giacomo Vacca
Hi Ahmed, there is a lot of material related to integrating Kamailio and Asterisk. You will get useful help here by describing in detail what you want to achieve, what constraints you have, and what you have tried already. Cheers, Giacomo On Mon, 20 Apr 2020 at 01:43, ahmed moghazy wrote: >

Re: [SR-Users] (no subject)

2020-04-19 Thread ahmed moghazy
Excuse me sir, if i want to make integration between kamailio and asterisk to make kamailio could use land line , i followed steps but i got errors i want help , was asterisk is only way to make kamailio use landline (fxs,fxo) Sent from my iPhone > On Mar 10, 2020, at 9:52 PM, ahmed moghazy

Re: [SR-Users] (no subject)

2020-03-12 Thread Henning Westerholt
Sent: Thursday, March 12, 2020 8:56 AM To: Henning Westerholt Subject: Re: [SR-Users] (no subject) I want to know steps for that cause when i try this it give me error i dont know why ?! On Mar 11, 2020, at 10:21 AM, Henning Westerholt mailto:h...@skalatan.de>> wrote:  Hello, this c

Re: [SR-Users] (no subject)

2020-03-11 Thread Henning Westerholt
services – https://gilawa.com<https://gilawa.com/> From: sr-users On Behalf Of ahmed moghazy Sent: Tuesday, March 10, 2020 8:53 PM To: Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] (no subject) If i want to make users in groups for example two Groups group A and group B an

Re: [SR-Users] (no subject)

2020-03-10 Thread ahmed moghazy
If i want to make users in groups for example two Groups group A and group B and each group has 4 users but users in group A couldn't Call users in group B? > On Mar 3, 2020, at 10:36 PM, ahmed moghazy wrote: > > I generate those certificates and i put then in linphone source code i want >

Re: [SR-Users] (no subject)

2020-03-03 Thread ahmed moghazy
I generate those certificates and i put then in linphone source code i want to enable require_certficate=1 could you help me how and where to put the certificates and linphone peer return it ? , thank you > On Mar 3, 2020, at 10:52 AM, M S wrote: > >  > Any sip client will work with

Re: [SR-Users] (no subject)

2020-03-03 Thread M S
Any sip client will work with kamailio (as sip server) as long as it supports TLS and configured correctly. I mostly use Linphone, Xlite and some of my own sip clients that i have built over the years. You simply need to follow the quick howto in tls module documentation (as i mentioned earlier)

Re: [SR-Users] (no subject)

2020-03-02 Thread ahmed moghazy
I know that but i want voip program to be used with kamailio using tls i you could suggest one , thank you Sent from my iPhone > On Mar 3, 2020, at 5:54 AM, M S wrote: > >  > Dude again, RTFM! > > The TLS module has a quick how-to generate client and server certificates. > Both must be

Re: [SR-Users] (no subject)

2020-03-02 Thread M S
Dude again, RTFM! The TLS module has a quick how-to generate client and server certificates. Both must be issued by same CA and server must have all issued certificates along with CA, CRL and private key. The whole directory structure and what to put where is listed, along with how to configure

Re: [SR-Users] (no subject)

2020-03-02 Thread ahmed moghazy
I put my own certficate in /res/raw/rootca.pem in linphone Sent from my iPhone > On Mar 2, 2020, at 7:40 PM, M S wrote: > >  > Please read the tls module documentation, > > https://kamailio.org/docs/modules/devel/modules/tls.html#tls.p.require_certificate > > when enabled it requires

Re: [SR-Users] (no subject)

2020-03-02 Thread M S
Please read the tls module documentation, https://kamailio.org/docs/modules/devel/modules/tls.html#tls.p.require_certificate when enabled it requires client to present certificate, but client does not have one, which is the likely cause of the problem. Hope this helps. On Mon, 2 Mar 2020,

Re: [SR-Users] (no subject)

2019-07-30 Thread jay binks
Damn... just realised that I didnt type a subject at all :) On Wed, 31 Jul 2019 at 12:58, jay binks wrote: > Hey all, > looking for a little help. > > I've been tracking an issue, where a number of SIP Messages ( typically > INVITE ) are sent, but Kamailio only see one of them ( the last one).

Re: [SR-Users] (no subject)

2019-07-10 Thread Alex Balashov
Oh, yes — if the hyphen was a string literal it would have the same type conversion effect as adding an empty string into the mix. — Sent from mobile, with due apologies for brevity and errors. > On Jul 10, 2019, at 11:12 AM, Ilie Soltanici wrote: > > Got it working by setting: > >

Re: [SR-Users] (no subject)

2019-07-10 Thread Alex Balashov
Hi Ilie, On Wed, Jul 10, 2019 at 03:13:25PM +0100, Ilie Soltanici wrote: > I tried also: > > *$var(account)="" + "$(au{s.select,0,-}{s.toupper})-$(au{s.select,1,-})";* I assume the hyphen (`-`) between $(au{s.select,0,-}{s.toupper}) and $(au{s.select,1,-}) is meant to be a string literal. If

Re: [SR-Users] (no subject)

2019-07-10 Thread Ilie Soltanici
Got it working by setting: $var(account)=$(au{s.select,0,-}{s.toupper}) + "-" + $(au{s.select,1,-}); Thanks În mie., 10 iul. 2019 la 15:13, Ilie Soltanici a scris: > Hello, > > Could someone help me to set a variable as a string in Kamailio? > > At the moment i'm using the following

Re: [SR-Users] (no subject)

2018-02-13 Thread Daniel-Constantin Mierla
Hello, if you set use_received param for path module, then the received address in Route header is set as dst uri, see:   - https://www.kamailio.org/docs/modules/stable/modules/path.html#path.p.enable_r2 All you need to do is: loose_route(); t_relay(); Note that loose_route() is dealing with

Re: [SR-Users] (no subject)

2018-02-13 Thread Tihomir Culjaga
Hi Daniel, thanks for you e-mail... i will try that approach. in the main time i exploited the "received" parameter in route header sent by freeswitch and with a bit of manipulation i managed to rout the call back to WS client :=) Im will definitely try to enable r2 and come back with the

Re: [SR-Users] (no subject)

2018-02-13 Thread Daniel-Constantin Mierla
Hello, you have an explicit set of $fs, which is setting the send socket. You have to do then when receiving from WS, not when going to WS. In 5.1, you can try to enable:   - https://www.kamailio.org/docs/modules/stable/modules/path.html#path.p.enable_r2 and then let kamailio do all about send