Re: DLR and sqlbox

2011-08-18 Thread Diverse
Yes. I need to give your sms_id, which would then find it on DLR can implement the meta-data? How to do this? Willy Mularto пишет: > There is no sms_id field name afaik, the one exist is smsc_id. Or do you mean > you want to add a custom field? If yes, there will be 2 approaches here. You > ca

Re: is it possible to make kannel pass custom data

2011-08-18 Thread Nikos Balkanas
Hi, If by sender provider you mean originated SMSc, you can get the last SMSc in the chain by using the %i variable in your dlr-url (in case of MT) or in your get-url in your sms-service (in case of MO). BR, Nikos On Fri, Aug 19, 2011 at 2:33 AM, Ahmed AL-Tahami wrote: > Hi , > > Is it possibl

Re: DLR and sqlbox

2011-08-18 Thread Andreas Bergman
create a column called sql_id and make it primary key and auto_increment. CREATE TABLE IF NOT EXISTS `send_sms` ( `sql_id` bigint(20) NOT NULL auto_increment, `momt` enum('MO','MT') default NULL, `sender` varchar(20) default NULL, `receiver` varchar(20) default NULL, `udhdata` blob, `m

Re: is it possible to make kannel pass custom data

2011-08-18 Thread Andreas Bergman
If the provider is passed as data on incoming messages, then yes you can. Otherwise you will have to make that lookup in a separate script. I think HLR could do that for you. Andreas 19 aug 2011 kl. 01:33 skrev Ahmed AL-Tahami: > Hi , > > Is it possible to make kannel pass custom data to my j

Re: DLR and sqlbox

2011-08-18 Thread Willy Mularto
There is no sms_id field name afaik, the one exist is smsc_id. Or do you mean you want to add a custom field? If yes, there will be 2 approaches here. You can modify the source code and it need programming skills or you can implement the meta-data feature. On Aug 18, 2011, at 8:38 PM, Divers

is it possible to make kannel pass custom data

2011-08-18 Thread Ahmed AL-Tahami
Hi , Is it possible to make kannel pass custom data to my java Servlet? what i need is more information about the SMS sender from the smsc, like the sender provider (I guess provider and tariff are the same thing). is it possible? if yes, would you please tell me how. Best Regards.

Re: DLR and request a dlr_url

2011-08-18 Thread Kenny
Rene.. my own concern here is: Lets {*assume}* the receiving web-servers is 100% perfect, would Kannel ever fail to call the DLR URL when it does have a DLR from the SMSC ? -- Regards Kenny On Wed, Aug 10, 2011 at 12:11 PM, Rene Kluwen wrote: > Maybe I understood your question wrong. >

Kannel integration with openbsc

2011-08-18 Thread Kallies, Christopher A CTR USAF AFMC AFRL/RIGC
Hello, Has anyone used kannel with the SMSC bundeled with openbsc? I have searched the mailing list but did not find anything relevent. If anyone has any experiance using the SMSC included with the openbsc I would love to see your smskannel.conf file. Any links or thoughts are welcome, as o

Re: Send command to Operator

2011-08-18 Thread Alvaro Cornejo
Hi There is no way -up to now-- to have kannel send customised AT commands at will... A workarround is to include the desired command into keep-alive parameter and set the proper interval. This will make kannel send the message at regular intervals to modem. The cons is that if you want to change

In depth reading material for configuring Kannel and Hack the PHP part

2011-08-18 Thread Ashvin Savani
Hi, I read the manual available on the site but if anyone can point at some material including books etc., where I can learn more in depth of Kannel including PHP part and SQLBox stuff, it would be great. Regards, Ashvin Savani | *CEO* *Avinashi Group of Companies* | *Excellence Everywhere!* *

Re: Send command to Operator

2011-08-18 Thread Wendy William
AFAIK, It is only about sending AT+CUSD=1. But entire Kannel doc not say about USSD. Time to hack Kannel? Or it is already supported? If not supported, I wonder why this easy task missing from Kannel? Wendy - Original Message > From: amejia amejia > To: Wendy William > Cc: "user

Re: DLR and sqlbox

2011-08-18 Thread Diverse
This is an example, it would be convenient to give sms_id through a separate field. Is it possible? Willy Mularto пишет: > You missed dlr_mask field brother. Set it with Kannel's standard value. > Please check the user-guide. It is your best friend actually :) > > > On Aug 18, 2011, at 7:20 PM, D

Re: DLR and sqlbox

2011-08-18 Thread Willy Mularto
You missed dlr_mask field brother. Set it with Kannel's standard value. Please check the user-guide. It is your best friend actually :) On Aug 18, 2011, at 7:20 PM, Diverse wrote: > I did this. Kannel 1.5 + sqlbox. > > MT > > INSERT INTO send_sms ( > momt, sender, receiver, msgdata, sms_type

Re: DLR and sqlbox

2011-08-18 Thread Willy Mularto
AFAIK and CMIIW, SQLBox has been part of Kannel for long times ago. I already use it since Kannel 1.3.2..ehmm it's about 3 years ago at least I guess. On Aug 18, 2011, at 6:46 PM, Wendy William wrote: > You need Kannel 1.5 which supports sqlbox. Then setup the dlr in kannel.conf, > Kannel wi

Re: Send command to Operator

2011-08-18 Thread amejia amejia
Does Kannel support USSD? Sent from my iPhone On 18/08/2011, at 03:05, Wendy William wrote: > Any idea? > > I readAlvaro Cornejo answer to use minicom/kermit, but we must stop Kannel > service first. > > It is a good feature if Kannel can send custom AT command. > > > > - Original Message

Re: DLR and sqlbox

2011-08-18 Thread Diverse
I did this. Kannel 1.5 + sqlbox. MT INSERT INTO send_sms ( momt, sender, receiver, msgdata, sms_type ) VALUES ( ’MT’, ’1234’, ’1234567890’, ’Hello world’, 2 ); In which field should I specify my sms_id, what I would then been able to find it on the table DLR sent_sms. And how can I use sending

Re: DLR and sqlbox

2011-08-18 Thread Wendy William
You need Kannel 1.5 which supports sqlbox. Then setup the dlr in kannel.conf, Kannel will automatically store to your created table. - Original Message > From: Diverse > To: users@kannel.org > Sent: Thu, August 18, 2011 5:39:29 PM > Subject: DLR and sqlbox > > And how can I use sen

DLR and sqlbox

2011-08-18 Thread Diverse
And how can I use sending messages through the base sqlbox, and link data from tables send_sms, sent_sms? Tell me please, through which field I can set my message number (sms_id), so after a write to send_sms I could find for this sms_id status (dlr) in sent_sms? -- signature.asc Descriptio

Re: Send command to Operator

2011-08-18 Thread Wendy William
Any idea? I readAlvaro Cornejo answer to use minicom/kermit, but we must stop Kannel service first. It is a good feature if Kannel can send custom AT command. - Original Message > From: Wendy William > To: users@kannel.org > Sent: Wed, August 17, 2011 5:07:48 PM > Subject: Send comm