[SR-Users] Kamailio v3.1.3 Released

2011-04-04 Thread Daniel-Constantin Mierla
Hello, Kamailio SIP Server v3.1.3 stable release is out. This is a maintenance release of latest stable branch, 3.1, that includes fixes since release of v3.1.2. There is no change to database schema or configuration language structure. Deployments running v3.1.0, v3.1.1 or 3.1.2 are strongly

Re: [SR-Users] SIP NOTIFY problem in 'presence_dialoginfo' module?

2011-04-04 Thread Klaus Darilion
Daniel-Constantin Mierla wrote: Hello, you said that the publish is created by the phones in your case, not by kamailio with pua_dialoginfo, right? If yes, then one question for Klaus D. in this case ... the body is build in pua_dialoginfo with the placeholder and presence_dialoginfo expect

Re: [SR-Users] SIP-XMPP problem, please help

2011-04-04 Thread Daniel-Constantin Mierla
Hello, if you run kamailio with debug=3, what log messages are printed when the xmpp message arrives to kamailio? Cheers, Daniel On 4/4/11 7:19 PM, Martin Pohančeník wrote: Hello everyone. I am a student at University of Žilina (Faculty of Management Science and Informatics), which has been

[SR-Users] SIP-XMPP problem, please help

2011-04-04 Thread Martin Pohančeník
Hello everyone. I am a student at University of Žilina (Faculty of Management Science and Informatics), which has been recently awarded Kamailio 2010 Awards for various articles about SIP and KAMAILIO on portal nil.uniza.sk. I am doing a bachelor thesis on topic SIP/SIMPLE - XMPP traversal, but I a

Re: [SR-Users] RES: Suggestion dialog module / $dlg_ctx() problem.

2011-04-04 Thread Carsten Bock
Hi Alexandre, yes, that should do... Carsten 2011/4/4 Alexandre Abreu : > Hello > > So this means that I can copy the dialog  extensions from master-git into > branch 3.1 and test the stuff (like I did with rtpproxy). > > Alexandre > > -Mensagem original- > De: kaiserbo...@googlemail.com

[SR-Users] RES: RES: Suggestion dialog module / $dlg_ctx() problem.

2011-04-04 Thread Alexandre Abreu
Hello So this means that I can copy the dialog extensions from master-git into branch 3.1 and test the stuff (like I did with rtpproxy). Alexandre -Mensagem original- De: kaiserbo...@googlemail.com [mailto:kaiserbo...@googlemail.com] Em nome de Carsten Bock Enviada em: segunda-feira, 4

Re: [SR-Users] RES: Suggestion dialog module / $dlg_ctx() problem.

2011-04-04 Thread Carsten Bock
Hi, i've just pushed my extensions to dialog (and minor changes to rr) into master. Worked like a charm, with the exception, that the changelog does not contain my original commit notices Carsten 2011/4/1 Timo Reimann : > Hey Carsten, > > > On 31.03.2011 22:40, Carsten Bock wrote: >> from my

Re: [SR-Users] [PATCH] modules_k/db_sqlite: new sql backend

2011-04-04 Thread Alex Hermann
On Monday 04 April 2011, Timo Teräs wrote: > Implements the kamailio database API for SQLite. > +static str* str_dup(const char *_s) > +{ > + str *s; > + int len = strlen(_s); > + > + s = (str*) pkg_malloc(sizeof(str)+len+1); > + s->len = len; > + s->s = ((char*)s) + sizeof(st

[SR-Users] Setting Global Variables

2011-04-04 Thread Nathaniel L Keeling
Hello, I am trying to use global variables within my configuration script. I am using Kamailio v3.0.0 and I am following the syntax example written in the sample config file but I keep getting syntax errors. Here is a copy of my syntax and I am using cfg_get.voicemailserver.bindip to get the v

Re: [SR-Users] [sr-dev] library dir for x86_64 - lib or lib64

2011-04-04 Thread Martin Hoffmann
Daniel-Constantin Mierla wrote: > > iirc this was at some point discussed, however, I want to go through it > again. > > Many x86_64 distros expect libraries to be placed under a lib64 > directory. For example the RPM spec file language returns /usr/lib64 for > %{_libdir} variable. > > In the

Re: [SR-Users] preparing kamailio v3.1.3

2011-04-04 Thread Daniel-Constantin Mierla
Hello, if you have changes for 3.1.3, try to push them today before 17:00 GMT. I will try to start the packaging afterwards - it may happen tomorrow though. Thanks, Daniel On 3/30/11 5:23 PM, Daniel-Constantin Mierla wrote: Hello, it is almost 2 months since we packaged 3.1.2, there are co

Re: [SR-Users] RES: Suggestion dialog module / $dlg_ctx() problem.

2011-04-04 Thread Carsten Bock
Hi Klaus, yes, that is a possible use-case. You could, for example, use dedicated machine for offline message storage with MSilo. When the message was stored, you could SUBCRIBE for the registration status at the registrar and one the user gets online, the user will get his message delivered. That

Re: [SR-Users] [PATCH] modules_k/db_sqlite: new sql backend

2011-04-04 Thread Daniel-Constantin Mierla
Hi Timo, thanks, that is very useful! I was playing with the idea of developing it for using in small deployments and embedded devices, but couldn't find any time for it ... To get the code in the repository, there are some things that need to be sorted out: - code reviewing - from my point

[SR-Users] [PATCH] modules_k/db_sqlite: new sql backend

2011-04-04 Thread Timo Teräs
Implements the kamailio database API for SQLite. Signed-off-by: Timo Teräs --- modules_k/db_sqlite/Makefile| 15 ++ modules_k/db_sqlite/db_sqlite.c | 90 +++ modules_k/db_sqlite/dbase.c | 515 +++ modules_k/db_sqlite/dbase.h | 72 +