Re: Patch removed from CVS

2009-01-28 Thread Alexander Malysh
Hi, this is OK, I have dropped this patch because it break SMPP dlr handling. Am 28.01.2009 um 01:10 schrieb Nikos Balkanas: Hi, I just tried to update from CVS. A lot of work has been introduced for meta-data recently. Unfortunately, in the case of gw/smsc/ smsc_smpp.c it seems old sou

Re: [PATCH] Fixing SMPP re-routing, DLR request indication

2009-01-28 Thread Stipe Tolj
Nikos Balkanas schrieb: > Short, elegant patch. +1 thanks ;) > A similar patch is probably needed for the other smscs. I imagine also > that no other DLR mask values are needed other than the ones you supply > (3 or 2). yep, the values defined for registered_delivery are "split" into Delivery Re

Re: [PATCH] Fixing SMPP re-routing, DLR request indication

2009-01-28 Thread Alexander Malysh
Hi, AFAIK deliver_sm.registered_delivery may contain values: 4, 8, 12 only. Also 1 and 2 are wrong in the patch. The second thing is, that ESME/SME DLRs contains only ACKs. Short to say: as from the smpp spec perspective -1 For the SMPP based re-routing I don't see any sense to forward DLR flag

Re: Patch removed from CVS

2009-01-28 Thread Nikos Balkanas
Interesting. This is just correct C for printing strtoll. Seems that in this case 2 wrongs make it right. Any chance that SMPP dlr handling can be corrected? I imagine that all 32bit machines with smpp connections would have this problem. BR, Nikos - Original Message - From: Alexan

Re: Patch removed from CVS

2009-01-28 Thread Alexander Malysh
the issue is that we always paniced when %llu was used because octstr_format doesn't implement %llu format. Thanks, Alex P.S. You are free to implement %llu for octstr_format then I will reapply my smpp patch ;) Am 28.01.2009 um 12:09 schrieb Nikos Balkanas: Interesting. This is just corr

Re: [PATCH] Fixing SMPP re-routing, DLR request indication

2009-01-28 Thread Stipe Tolj
Alexander Malysh schrieb: > Hi, > > AFAIK deliver_sm.registered_delivery may contain values: 4, 8, 12 only. > Also 1 and 2 are wrong in the patch. > The second thing is, that ESME/SME DLRs contains only ACKs. ??? we set 1 and 2 since we want to ensure that a re-routed MO, that is then morphed to

Re: Patch removed from CVS

2009-01-28 Thread Nikos Balkanas
Sounds fair. I will check into it. BR, Nikos - Original Message - From: Alexander Malysh To: Nikos Balkanas Cc: devel@kannel.org Sent: Wednesday, January 28, 2009 1:15 PM Subject: Re: Patch removed from CVS the issue is that we always paniced when %llu was used because

Re: [PATCH] Fixing SMPP re-routing, DLR request indication

2009-01-28 Thread Alexander Malysh
Am 28.01.2009 um 12:26 schrieb Stipe Tolj: Alexander Malysh schrieb: Hi, AFAIK deliver_sm.registered_delivery may contain values: 4, 8, 12 only. Also 1 and 2 are wrong in the patch. The second thing is, that ESME/SME DLRs contains only ACKs. ??? we set 1 and 2 since we want to ensure tha

Web Application

2009-01-28 Thread kechaou
Hello Can someone know if there's a web application written in php, jsp or aspx to configure KANNEL, do statistics and to convert logo and ringtone to kannel hex format? thanks

Re: information mail regarding mysql -database

2009-01-28 Thread narendra reddy
Hi, I gothrogh the documents wat they are provided in the kannel.org .based on that i added dlr-storage=mysql in the coregroup . and added the remaing things after send-sms users group. they are. group = mysql-connection id = mydlr host = localhost username = narendra password =

Re: information mail regarding mysql -database

2009-01-28 Thread Alvaro Cornejo
Have you compiled kannel with mysql support? use --with-mysql when runing ./configure On Wed, 2009-01-28 at 19:52 +0530, narendra reddy wrote: > > Hi, > > > I gothrogh the documents wat they are provided in the > kannel.org .based on that i added dlr-sto

Re: information mail regarding mysql -database

2009-01-28 Thread narendra reddy
Hi Alvaro, Thanks for giving feedback to my mail. It means to install mysql library. actuvally now in my laptop no mysql library.we have explicitly create any tables and write code and so on? can do any manual opereations for data-base part as fro

Re: information mail regarding mysql -database

2009-01-28 Thread Alejandro Guerrieri
Narendra please redirect your emails to the USERS list. This is for Kannel DEVELOPERS (e.g. develop new features, review patches, fix bugs, etc.) And _please_ read the user guide thoroughly and check the list archives. This has been answered a gazillion times in the past. Regards, -- Alej

store_tool segmentation fault

2009-01-28 Thread Alvaro Cornejo
Hi Alex I'v downloaded your store_tool and try to use; however, I got an segmentation fault when listing the store: Message and phone numbers were changed due messages are from production. Kannel wasn't affected by fault. [u...@srvcom1 kannel]# ./store_tools -c /etc/kannel/kannel.conf list Listi

Re: store_tool segmentation fault

2009-01-28 Thread Alvaro Cornejo
Hi Alex I was retrying the tool to see if it passes and I get the following dump: Note that the list shows reccords 1-> 100 however at the moment I run the tool I had over 400 messages queued. Also note the strange chars on the header lines. I use iso-8891 as my locale charset [u...@srvcom1 kan

Re: store_tool segmentation fault

2009-01-28 Thread Alvaro Cornejo
Hi Alex Encore this other error: [u...@srvcom1 test]# ./store_tools -c /etc/kannel/kannel.conf list Listing records 1 -> 100 +- ¡G-+-h¡G---+-X¡G---+-h¡G---+- ¡G---+ | message id

Re: Patch removed from CVS

2009-01-28 Thread Nikos Balkanas
Hi all, Attached patch to gwlib/octstr.c provides support for %ll and %llu in octstr_format. To do that I introduced a new format->type: 'L' for long long variables. This is a prerequisite patch for #460. Please vote, and if possible test (I have tested it only with my demo program, not kannel

Re: Patch removed from CVS

2009-01-28 Thread Martin Conte Mac Donell
On Wed, Jan 28, 2009 at 8:58 PM, Nikos Balkanas wrote: > Hi all, > > Attached patch to gwlib/octstr.c provides support for %ll and %llu in > octstr_format. To do that I introduced a new format->type: 'L' for long long > variables. This is a prerequisite patch for #460. > > Please vote, and if poss

Re: Patch removed from CVS

2009-01-28 Thread Nikos Balkanas
You are absolutely right. Couldn't figure out the logic behind the existing type casting. I believe that now it is OK. BR, Nikos - Original Message - From: "Martin Conte Mac Donell" To: "Nikos Balkanas" Cc: "Alexander Malysh" ; Sent: Thursday, January 29, 2009 2:00 AM Subject: Re: P

mysql data-base

2009-01-28 Thread narendra reddy
Hi, I want the information regading mysql database .how to write a make file to support a mysql libraries . Best Regards, Narendra Reddy.

Re:smpp data-sm

2009-01-28 Thread narendra reddy
Hi Alexander/ I read somewhere that stable version support data_sm for MO. I want to use it for MO as well as for MT. Will that suggestion really works out or do you have any other simple configuration. How we can use data-sm in replace of submit-sm operation using smpp protocol.

Re: information mail regarding mysql -database

2009-01-28 Thread narendra reddy
Hi , what is the DCS and ESM values for Ringtones and operator-logo and Flash-messages. Thanks in advance Best Regards, Narendra reddy. On Thu, Jan 29, 2009 at 1:55 AM, Alvaro Cornejo wrote: > Kannel MUST HAVE mysql libraries in order compile mysql support. You > can NOT use mysql connection

Re: store_tool segmentation fault

2009-01-28 Thread Alejandro Guerrieri
Alvaro, First of all, thanks for trying the patch. I couldn't reproduce the error locally. This is probably related to something inside your store rising some unexpected condition that store_stool cannot handle. Could you please mail me the store file you're using so I can try to reprodu