Re: Kannel as an SMSC

2010-06-20 Thread Mohamed Ould Mohamed Salem
No, CVS, but of kannel. Apparently, smppbox doesnt work with 1.4.3, i had to use cvs version of kannel. From: Rene Kluwen rene.klu...@chimit.nl To: medms...@yahoo.fr; Kannel users users@kannel.org Sent: Fri, June 18, 2010 11:50:20 AM Subject: RE: Kannel as an

Too long password

2010-06-20 Thread hafez ahmad
Dears, I get the following error when I try to connect my SMPP connection, my password is 9 chars 2010-06-20 10:52:19 [4228] [38] WARNING: SMPP: PDU element password too long (length is 9, should be 8) and I know that the SMPP allows 8 chars + the null char as terminator, I called my provider

Re: Kannel as an SMSC

2010-06-20 Thread Konstantin Vayner
Kannel switched to SVN repository as well, actually The site is still lagging behind, but CVS is locked to readonly mode, no commits are going into it anymore On Sun, Jun 20, 2010 at 11:05 AM, Mohamed Ould Mohamed Salem medms...@yahoo.fr wrote: No, CVS, but of kannel. Apparently, smppbox

Scheduling Question

2010-06-20 Thread T.K.Thapa
Hello, Does kannel bearerbox,smsbox or sqlbox support scheduling of messages? If yes how? Regards Tapan Thapa

Re: Mask shorcode and reply to number

2010-06-20 Thread Sergio Gabriel Gallegos
Maybe raise bad stage, I need to send an MT with an alphabetical origin, but if the user wants the option to reply in response, I require tagging me a numerical answer, not the alphanumeric, as a similar analogy when sending an e-mail with an origin (from) and a different recipient (reply-to),

Re: Mask shorcode and reply to number

2010-06-20 Thread Milan P. Stanic
On Sun, 2010-06-20 at 05:05, Sergio Gabriel Gallegos wrote: Maybe raise bad stage, I need to send an MT with an alphabetical origin, but if the user wants the option to reply in response, I require tagging me a numerical answer, not the alphanumeric, as a similar analogy when sending an e-mail

Re: Mask shorcode and reply to number

2010-06-20 Thread Alejandro Guerrieri
You probably need to play with the TON and maybe NPI settings. Alphanumeric is TON 5. I'm not sure about how to force the phone to answer numerically, maybe the SMSC operator needs to change something on his/her side? I'd start by setting source address TON with 5, and destination address TON

Re: Mask shorcode and reply to number

2010-06-20 Thread Milan P. Stanic
On Sun, 2010-06-20 at 13:14, Alejandro Guerrieri wrote: You probably need to play with the TON and maybe NPI settings. Alphanumeric is TON 5. I'm not sure about how to force the phone to answer numerically, maybe the SMSC operator needs to change something on his/her side? I'd start by

Re: Too long password

2010-06-20 Thread sangprabv
It should be in smsc_smpp.c sangprabv sangpr...@gmail.com On Jun 20, 2010, at 3:23 PM, hafez ahmad wrote: Dears, I get the following error when I try to connect my SMPP connection, my password is 9 chars 2010-06-20 10:52:19 [4228] [38] WARNING: SMPP: PDU element password too long

Re: Scheduling Question

2010-06-20 Thread sangprabv
Quick and dirty way is patch the query in the sqlbox source code. sangprabv sangpr...@gmail.com On Jun 20, 2010, at 4:15 PM, T.K.Thapa wrote: Hello, Does kannel bearerbox,smsbox or sqlbox support scheduling of messages? If yes how? Regards Tapan Thapa

RE: Scheduling Question

2010-06-20 Thread Rene Kluwen
Yes, sqlbox does scheduling of writing with a simple (1-line) patch. You can find it on the mailinglist, but to facilitate your search, here it is again: in gw/sqlbox_mysql.h something like: SELECT sql_id, momt, sender, receiver, udhdata, \ msgdata, time, smsc_id, service, account,

Re: Too long password

2010-06-20 Thread Alan McNatty
Hi Hafez, I have had this problem too - best solution is to get them to reissue a password of correct length. But if you have to .. check the source file gw/smsc/smpp_pdu.def I believe all that would be required is to change the size definition (I'll leave it to you to test, etc). The current

Re: Scheduling Question

2010-06-20 Thread sangprabv
Agree with Rene but keep in mind by using that query for a high load system will reduce the speed since there will be overhead. sangprabv sangpr...@gmail.com On Jun 21, 2010, at 12:41 AM, Rene Kluwen wrote: Yes, sqlbox does scheduling of writing with a simple (1-line) patch. You can

RE: Scheduling Question

2010-06-20 Thread T.K.Thapa
Hello, I have seen the same feature requested by many users. Can't we have the same by default in source code of sqlbox and put the query in configuration file. Regards Tapan Thapa --- On Sun, 20/6/10, Rene Kluwen rene.klu...@chimit.nl wrote: From: Rene Kluwen rene.klu...@chimit.nl Subject:

RE: Scheduling Question

2010-06-20 Thread T.K.Thapa
Hello, Two more questions: 1. Can sqlbox submit sms to bearerbox at a configurable rate? Lets say 5 message per second so that no queue is built at bearerbox for particular smsc. 2. If there is a queue at bearerbox (particular smsc), lets say 100 then till the time queue come down to less than

RE: Scheduling Question

2010-06-20 Thread T.K.Thapa
Hello, Two more questions: 1. Can sqlbox submit sms to bearerbox at a configurable rate? Lets say 5 message per second so that no queue is built at bearerbox for particular smsc. 2. If there is a queue at bearerbox (particular smsc), lets say 100 then till the time queue come down to less than

Re: Scheduling Question

2010-06-20 Thread sangprabv
You can use throughput directive. sangprabv sangpr...@gmail.com On Jun 21, 2010, at 12:02 PM, T.K.Thapa wrote: Hello, Two more questions: 1. Can sqlbox submit sms to bearerbox at a configurable rate? Lets say 5 message per second so that no queue is built at bearerbox for particular

Re: Scheduling Question

2010-06-20 Thread sangprabv
Alex is developing the feature, keep watching and contribute to the community :) sangprabv sangpr...@gmail.com On Jun 21, 2010, at 11:07 AM, T.K.Thapa wrote: Hello, I have seen the same feature requested by many users. Can't we have the same by default in source code of sqlbox and put