Re: [SR-Users] pv_printf buffer for spec value

2015-11-05 Thread Daniel-Constantin Mierla
Hello, On 04/11/15 19:36, Tristan Mahé wrote: > Hello Daniel, > > Simple update to 1024b: > > https://github.com/kamailio/kamailio/pull/389 ok. > > I'll try to provide a new config file entry as soon as I can ! That would be great as well! Cheers, Daniel > > Best, > > Tristan. > > On 11/04/2015 1

Re: [SR-Users] q-value on unsupported clients

2015-11-05 Thread Daniel W. Graham
I figured out a way to send q-value by using auth user, however ran into an issue- # Check Authorization User for q-value and replace Contact header if $(au{param.count}) > 0 { $var(q

Re: [SR-Users] pv_printf buffer for spec value

2015-11-05 Thread Sven Neuhaus
Am 04.11.2015 um 19:36 schrieb Tristan Mahé: > Simple update to 1024b: > > https://github.com/kamailio/kamailio/pull/389 Thank you Tristan, 1024 is plenty. -Sven signature.asc Description: OpenPGP digital signature ___ SIP Express Router (SER) and

Re: [SR-Users] q-value on unsupported clients

2015-11-05 Thread Daniel Tryba
> Based on the xlog output, the following doesn't appear to be working - > remove_hf("Contact"); > append_hf("Contact: $var(newct)\r\n"); > > I've actually had a similar issue before replacing a hdr so I'm wondering if > I'm doing something wrong? Header manipulation is doesn't update the already

Re: [SR-Users] q-value on unsupported clients

2015-11-05 Thread Olle E. Johansson
> On 05 Nov 2015, at 10:15, Daniel Tryba wrote: > >> Based on the xlog output, the following doesn't appear to be working - >> remove_hf("Contact"); >> append_hf("Contact: $var(newct)\r\n"); >> >> I've actually had a similar issue before replacing a hdr so I'm wondering if >> I'm doing somethin

Re: [SR-Users] UacRegInfo flags

2015-11-05 Thread Daniel-Constantin Mierla
Hello, the values of possible flags are defined in uac_reg.c: https://github.com/kamailio/kamailio/blob/master/modules/uac/uac_reg.c#L45 The names should be a bit suggestive, I will add more in comments when I get a chance. If someone gets the time before, a pull request to the docs is also very

Re: [SR-Users] Adding proprietary event in kamailio

2015-11-05 Thread Priyaranjan Nayak
Hi Daniel, I have written a c module called presence_feature and generated a dynamic library (i.e.presence_feature.so) by referring the exiting presence_profile module's code to add the custom event(i.e.Event: as-feature-event). Now I wanted to use the presence_feature.so library in the kamailio.

Re: [SR-Users] Adding proprietary event in kamailio

2015-11-05 Thread Daniel-Constantin Mierla
Hello, you need to install the module and the load it in the configuration file: make install-modules modules=modules/presence_feature then in the kamailio.cfg loadmodule "presence_feature.so" If you have parameters, then you have to set them with modparam("presence_feature", "param_name", pa

Re: [SR-Users] Adding proprietary event in kamailio

2015-11-05 Thread Priyaranjan Nayak
Hi Daniel, Thanks for your quick and valuable response. It is working partially. Now I am getting "202 OK" response from kamailio for the SUBSCRIBE message, but I need "200 OK" .So I have below two query to make it proper. 1. How do I get "200 OK" response for SUBSCRIBER message from kamailio

[SR-Users] Branch & Forking

2015-11-05 Thread Marino Mileti
I'm playing with branch and i'm using this simple route (copied from kamailio website) route { seturi("sip:a...@example.com"); append_branch("sip:b...@example.com"); append_branch("sip:c...@example.com"); t_relay(); break; } A B & C rings at the same time. If B or C aren't registered

[SR-Users] Webpage Display

2015-11-05 Thread Ryan Holbein
Hello, I have installed: CentOS 6 Kamailio v4.2 Siremis v4.2 I went thought the siremis install just fine but when you get to the last page and click launch siremis the very next screen is displayed wrong. Unable to login and display any images. __

[SR-Users] restore_uri_reply() called twice in 200OK to BYE

2015-11-05 Thread Efelin Novak
Hi Folks, I have a problem with To and From headers in 200 OK to BYE request. Their URI is doubled when leaving Kamailio. Incoming 200 OK: From : ;tag=as017a2986 To : ;tag=K7ryDgH2g7gFm Outgoing 200 OK: From : ;tag=as017a2986 To : ;tag=K7ryDgH2g7gFm I'm using uac module to replace these

Re: [SR-Users] q-value on unsupported clients

2015-11-05 Thread Daniel W. Graham
This explains a lot, I definitely wasn't aware. Thanks for the explanation! -Original Message- From: sr-users [mailto:sr-users-boun...@lists.sip-router.org] On Behalf Of Olle E. Johansson Sent: Thursday, November 5, 2015 4:23 AM To: Kamailio (SER) - Users Mailing List Subject: Re: [S

Re: [SR-Users] q-value on unsupported clients

2015-11-05 Thread Daniel W. Graham
Thanks! -Original Message- From: sr-users [mailto:sr-users-boun...@lists.sip-router.org] On Behalf Of Daniel Tryba Sent: Thursday, November 5, 2015 4:16 AM To: sr-users@lists.sip-router.org Subject: Re: [SR-Users] q-value on unsupported clients > Based on the xlog output, the following

[SR-Users] Webpage Display

2015-11-05 Thread Ryan Holbein
Can any help me with this .. please go to 65.61.9.54 and look at webpage how do I fix it? ___ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-us

Re: [SR-Users] Webpage Display

2015-11-05 Thread Infinicalls Infinicalls
Hi, I had the same problem, which was discussed here sometime back also. Try to update php GD and restart web server. It should work fine. thanks. regards Ganesh Kumar On 11/5/15, Ryan Holbein wrote: > Hello, > > > I have installed: > > > CentOS 6 > Kamailio v4.2 > >

Re: [SR-Users] Webpage Display

2015-11-05 Thread Daniel-Constantin Mierla
Hello, one more note -- if the installation uses a newer version of php (5.6+), then install siremis from git master branch: - https://github.com/asipto/siremis There were few fixes to make it compatible with some new php code restriction introduced in those versions. Cheers, Daniel On 06/11

Re: [SR-Users] restore_uri_reply() called twice in 200OK to BYE

2015-11-05 Thread Daniel-Constantin Mierla
Hello, try without restore_mode auto if you want that restore_dlg to be 1. Cheers, Daniel On 05/11/15 18:00, Efelin Novak wrote: > Hi Folks, > > I have a problem with To and From headers in 200 OK to BYE request. > Their URI is doubled when leaving Kamailio. > > Incoming 200 OK: > From : ;tag=