Re: [SR-Users] WARNING:fm_free at stop

2012-10-03 Thread Juha Heinanen
Daniel-Constantin Mierla writes: You can go and update in f_malloc and backport, if it is a solution that is ok for you. i committed the LOG - MDBG change to master. i still don't understand though, why it is only me who is seeing those warnings, since it is highly unlikely that others don't

[SR-Users] (no subject)

2012-10-03 Thread Kamal Palei
Hi All I am using Kamailio - 3.1.5 version. When a message of tel URI comes to Kamailio, Kamailio is not forwarding the message to next proxy. If is returning 478 Unresolved response . Can somebody give me some pointer how do I handle this situation? Thanks Kamal

Re: [SR-Users] WARNING:fm_free at stop

2012-10-03 Thread Daniel-Constantin Mierla
On 10/3/12 8:35 AM, Juha Heinanen wrote: Daniel-Constantin Mierla writes: You can go and update in f_malloc and backport, if it is a solution that is ok for you. i committed the LOG - MDBG change to master. i still don't understand though, why it is only me who is seeing those warnings,

Re: [SR-Users] Kamailio - can't write any logs to file

2012-10-03 Thread Daniel-Constantin Mierla
Hello, kamctl start redirects the sdtout and stderr to /dev/null You better install the init.d script for centos and use it instead of kamctl: http://kb.asipto.com/kamailio:install:3.3.x-from-git-centos5x#initd_script Or, if you installed from rpm, the script should be there. Cheers, Daniel

Re: [SR-Users] Handling Tel URIs

2012-10-03 Thread Kamal Palei
Changing the subject line On Wed, Oct 3, 2012 at 3:54 PM, Kamal Palei palei.ka...@gmail.com wrote: Hi All I am using Kamailio - 3.1.5 version. When a message of tel URI comes to Kamailio, Kamailio is not forwarding the message to next proxy. If is returning 478 Unresolved response . Can

Re: [SR-Users] kamailio and app_python

2012-10-03 Thread Daniel-Constantin Mierla
Hello, the best would be to enhance the module to be able to get/set pseudo-variables. I am not a python guy at all, so I cannot help much, however I can assist with the C side in kamailio if someone starts development and has questions about PVs. Calling config functions with parameters

Re: [SR-Users] FreeSWITCH | Kamailio MWI forwarding

2012-10-03 Thread Daniel-Constantin Mierla
Hello, On 9/28/12 1:11 PM, Tayeb Meftah wrote: hello we're using Kamailio / freeswitch freeswitch is the Voicemail server now. please how to forward MWI bethwan kamailio and Freeswitch? if user 1000 have a vm i want kamailio to fetch it from FS and advertise it to the subscriber thank you you

Re: [SR-Users] Locate UA in usrloc table

2012-10-03 Thread Daniel-Constantin Mierla
Hello, On 9/28/12 1:09 PM, Vitaliy Aleksandrov wrote: Hi all. Is there any easy method to find if somebody with $si:$sp is registered (usrloc-received.ip == $si, usrloc-received.port == $sp) ? reg_fetch_contacts uses uri as search key, but in my case I don't have it. The only way I know is

Re: [SR-Users] Kamailio CDR logging to DB

2012-10-03 Thread Daniel-Constantin Mierla
Hello, On 9/28/12 11:36 AM, Tayeb Meftah wrote: hi everyone, can someone show me how to save cdr's into db ? i enabled acc in the default config but still no cdr in the acc table thank you have you updated the structure of acc and missed_calls tables (the sql commands are in the default

Re: [SR-Users] Handling Tel URIs

2012-10-03 Thread Daniel-Constantin Mierla
Hello, On 10/3/12 12:36 PM, Kamal Palei wrote: Changing the subject line On Wed, Oct 3, 2012 at 3:54 PM, Kamal Palei palei.ka...@gmail.com mailto:palei.ka...@gmail.com wrote: Hi All I am using Kamailio - 3.1.5 version. When a message of tel URI comes to Kamailio, Kamailio is

Re: [SR-Users] Handling Tel URIs

2012-10-03 Thread Daniel-Constantin Mierla
Hello, do you have a Route header also for kamailio proxy? If yes, try to do loose_route() and then t_relay(). If not, get the address from Route in $du and relay: $du = $(hdr(Route){nameaddr.uri}); remove_hf(Route); t_relay(); exit; Cheers, Daniel On 10/3/12 1:46 PM, Kamal Palei wrote: Hi

Re: [SR-Users] Handling Tel URIs

2012-10-03 Thread Kamal Palei
Hi Daniel It worked fine. I added the below code. if(is_method(PUBLISH)) { loose_route(); t_relay(); exit; } Thanks Kamal On Wed, Oct 3, 2012 at 5:58 PM, Kamal Palei palei.ka...@gmail.com wrote: Thanks Daniel , let me

Re: [SR-Users] Error when client tries to put XCAP resource list

2012-10-03 Thread Daniel-Constantin Mierla
Hello, the http uri is available in available $hu. You can print it with xlog and be sure you give it as parameter to xcap server function. A basic example in the readme shows it: * http://kamailio.org/docs/modules/stable/modules_k/xcap_server.html#id2532050 Cheers, Daniel On 10/3/12

Re: [SR-Users] Error when client tries to put XCAP resource list

2012-10-03 Thread Daniel-Constantin Mierla
Hello, do not reply privately to discussions on the mailing list. It is important that the thread has a conclusion for the people searching in archive for the same topic. Cheers, Daniel On 10/3/12 10:13 PM, Sangeeta Shah wrote: Thanks for the response. I was able to figure it out and now

[SR-Users] make option to clean the installed binaries

2012-10-03 Thread Ajay Sabat
Hi, I am a newbie here and recently started using kamailio/ser. I am wondering is there a makefile option to cleanup the installed binaries and library files. Thanks, Ajay ___ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list

[SR-Users] [snmpstats] openserSIPRegRejectedRegistrations not being updated

2012-10-03 Thread Anatoly Ivanov
Hi, I am observing weird behavior of snmpstats.so - I see openserSIPRegAcceptedRegistrations being updated, but openserSIPRegRejectedRegistrations stays at zero. Could somebody please explain under what conditions this counter is being incremented? I am using auth_radius, so I suspect I simply

[SR-Users] Does Kamailio support ECDHE ciphers for TLS?

2012-10-03 Thread AJ
Hi,  I have Kamailio 3.3.1 working fine with TLS 1.0, running on CentOS 6.3  However, now I want to use some ECDHE ciphersuites, for instance:   ECDHE-ECDSA-AES128-SHA  I have built an appropriate OpenSSL (1.0.0j) in CentOS to support this, and have generated the appropriate certs:  openssl

Re: [SR-Users] Kamailio - can't write any logs to file

2012-10-03 Thread Nord7
Daniel, thank you, this is help me, all works fine! Best regards, Kirill Ushakov. 2012/10/3 Daniel-Constantin Mierla mico...@gmail.com Hello, kamctl start redirects the sdtout and stderr to /dev/null You better install the init.d script for centos and use it instead of kamctl: