[FYI] mailing lists are up again

2006-07-05 Thread Stipe Tolj
Hi list, you may have noticed that all of you (BTW, we have arround 850 subscribers in the devel list) have received a welcome message from our mailman, indicating that normal service of the lists is up again and all members have been automatically "re-subscribed". Stipe -

[FYI] SPAM in maling lists

2006-07-05 Thread Stipe Tolj
Hi list, we use now SA (SpamAssessin) to scan SMTP transactions for SPAM. You may filter out those kind of messages by applying specific rules in your MUA via taking care of the various included X-Spam_ SMTP headers. Stipe --- Köl

Re: about SMSC protocols

2006-07-05 Thread Stipe Tolj
Hi Darien, Darien Jesus Alvarez de la Cruz wrote: > Hello everybody: > > > > My name is Darien Jesus Alvarez de la Cruz. I am from Cuba and > I am studying Informatics Sciences at my last year, so I have to make my > thesis. > > > > I would like to make my investigation

http interface / SMSC sets various parameters to 0 instead of undef

2006-07-05 Thread Loïc Minier
Hi, While investigating how to override the resulting data coding of outgoing SMPP submit_reqs, I noticed that the HTTP interface to send SM sets: mclass = mwi = coding = validity = deferred = 0; (gw/smsc/smsc_http.c:415) effectively deactivating all other logic in Kannel which m

Re: about SMSC protocols

2006-07-05 Thread Mi Reflejo
Hi Darien, On 7/5/06, Stipe Tolj <[EMAIL PROTECTED]> wrote: > I guess we have a lot of users here that are familiar with Java, that can > comment and support. I would be one of them. I suggest you take a good look to arch/kannel documents and come to the list with all your doubts. Regards, Mart

[PATCH] 0000326: SMSbox CRASH: PANIC: gwlib/list.c:502: lock: Assertion

2006-07-05 Thread Vincent CHAVANIS
We have here an issue : -list is not checked in gwlist_delete_equal() So if dict_get(conn_pool, key) returns NULL the process panic. diff -rau /gateway-cvs/gwlib/http.c /gateway/gwlib/http.c --- /gateway-cvs/gwlib/http.c 2006-04-01 19:45:13.0 +0200 +++ /gateway/gwlib/http.c 200

Re: [PATCH] 0000326: SMSbox CRASH: PANIC: gwlib/list.c:502: lock: Assertion

2006-07-05 Thread Mi Reflejo
++1 good catch On 7/5/06, Vincent CHAVANIS <[EMAIL PROTECTED]> wrote: > We have here an issue : > > > -list is not checked in gwlist_delete_equal() > So if dict_get(conn_pool, key) returns NULL the process panic. > > > > diff -rau /gateway-cvs/gwlib/http.c /gateway/gwlib/http.c > --- /gateway-cvs/

Problem with TON=1

2006-07-05 Thread Alejandro Guerrieri
Dear Devels, I'm having problems receiving MO messages when addr-ton = 1 I get an error: "Mallformed addr `12345, expected at least 7 digits." I've isolated the problem to smsc_smpp.c, function convert_addr_from_pdu(): ... switch(ton) { case GSM_ADDR_TON_INTERNATIONAL: /*

Re: [PATCH] 0000326: SMSbox CRASH: PANIC: gwlib/list.c:502: lock: Assertion

2006-07-05 Thread Stipe Tolj
Mi Reflejo wrote: > ++1 > good catch yep, +1, applied to cvs and resolved bug. Stipe --- Kölner Landstrasse 419 40589 Düsseldorf, NRW, Germany tolj.org system architecture Kannel Software Foundation (KSF) http://www.tolj.org/

Re: [PATCH] config definition file hooking (for external modules), ie. sqlbox, mbuni, etc.

2006-07-05 Thread Stipe Tolj
Stipe Tolj wrote: > Hi list, > > now, as Kannel maintains its own way of "knowing" what config directives > are allowed in group sections, this is a problem if external modules, > ie. Rene's sqlbox or Paul's Mbuni need to use the same gwlib/cfg.[ch] > thingies. > > I tried to introduce a gene

Re: Problem with TON=1

2006-07-05 Thread Stipe Tolj
Alejandro Guerrieri wrote: > Dear Devels, > > I'm having problems receiving MO messages when addr-ton = 1 > > I get an error: > > "Mallformed addr `12345, expected at least 7 digits." > > I've isolated the problem to smsc_smpp.c, function convert_addr_from_pdu(): > > ... >switch(ton) { >

sending sms with blank source

2006-07-05 Thread Rogelio Serrano
How do we configure kannel so we can send smpp pdus with null source number? -- www.smsglobal.net SMS Global Ltd Short Message Service For Seafarers ___ devel mailing list devel@kannel.org http://www.kannel.org/mailman/listinfo/devel

Re: [PATCH] config definition file hooking (for external modules), ie. sqlbox, mbuni, etc.

2006-07-05 Thread Mi Reflejo
Great, we need to add that hook to sqlbox-standalone module. M. On 7/5/06, Stipe Tolj <[EMAIL PROTECTED]> wrote: > Stipe Tolj wrote: > > > Hi list, > > > > now, as Kannel maintains its own way of "knowing" what config directives > > are allowed in group sections, this is a problem if external mod

Re: sending sms with blank source

2006-07-05 Thread Mi Reflejo
Try puting global-sender = "" in smsbox group and doing the GET without "from" variable. M On 7/5/06, Rogelio Serrano <[EMAIL PROTECTED]> wrote: > How do we configure kannel so we can send smpp pdus with null source number? > > -- > www.smsglobal.net SMS Global Ltd Short Message Service For Seafa

Re: Problem with TON=1

2006-07-05 Thread Alejandro Guerrieri
*-addr-ton=1 y *-ton-npi=1 were as per operator's requirement. So they are (probably) violating some specs by setting ton=1 and using a 5 digits short number? I didn't find the 7-digits limit on SMPP 3.4 papers, but I'm sure it's there for some reason (only I wasn't able to find it). Regards, On

Re: Problem with TON=1

2006-07-05 Thread Stipe Tolj
Alejandro Guerrieri wrote: > *-addr-ton=1 y *-ton-npi=1 were as per operator's requirement. > > So they are (probably) violating some specs by setting ton=1 and using > a 5 digits short number? I didn't find the 7-digits limit on SMPP 3.4 > papers, but I'm sure it's there for some reason (only I

Re: [PATCH] config definition file hooking (for external modules), ie. sqlbox, mbuni, etc.

2006-07-05 Thread Stipe Tolj
Mi Reflejo wrote: > Great, we need to add that hook to sqlbox-standalone module. yep, go ahead... I also need to get the example configure/make build environment ripped out of my add-on boxes to let you use it. Stipe --- Kölner L

Re: sending sms with blank source

2006-07-05 Thread Stipe Tolj
Mi Reflejo wrote: > Try puting global-sender = "" in smsbox group and doing the GET > without "from" variable. as far as I recall the "from" variable is a required/must field for smsbox's sendsms interface. At least it has to be present, even while no value assigned. Stipe

Re: [PATCH] config definition file hooking (for external modules), ie. sqlbox, mbuni, etc.

2006-07-05 Thread Mi Reflejo
It isn't nessesary i'v already done :) M On 7/6/06, Stipe Tolj <[EMAIL PROTECTED]> wrote: Mi Reflejo wrote: > Great, we need to add that hook to sqlbox-standalone module. yep, go ahead... I also need to get the example configure/make build environment ripped out of my add-on boxes to let you