Kannel Installation on Solaris 9

2006-05-09 Thread OLOTU Olayinka
Hi, I tried to install Kannel WAP [no ssl support] on Solaris 9 and got some major errors. Has anyone tried this? I'd like some hints. I run it easily on Redhat Linux. Rgds

Re: ID column in SQLBOX

2006-05-09 Thread Nikola Goran Cutura
Hi Luis, There is column SQL_ID BIGINT(20) AUTOINCREMENT. That is the first column in table. Besides this one, there is column ID BIGINT(20), 11th column in table. This ID is of my interest. Do you know anything about it? Are there any values in your table? Regards, NGC -

How to manage new users through scripts

2006-05-09 Thread supporto1
Hi, I want to create a php script to permit users to send sms throught a php form. Users must be registered. Can Kannel manage accounts for sending sms? Thank You

Re: Kannel Installation on Solaris 9

2006-05-09 Thread Stipe Tolj
OLOTU Olayinka wrote: Hi, I tried to install Kannel WAP [no ssl support] on Solaris 9 and got some major errors. Has anyone tried this? I'd like some hints. I run it easily on Redhat Linux. Solaris is considered support out-of-the-box. In case you run into problems with Sun's make, plese

Re: How to manage new users through scripts

2006-05-09 Thread Vincent CHAVANIS
Hi, Yes you can specify one or more account in order to send smses with different login/pass. Take a look at group = sendsms-user on the http://www.kannel.org/download/kannel-userguide-snapshot/userguide.html regards Vincent -- Telemaque - NICE - (FR) Service Technique - Developpement

RE: [Kannel 0000322]: Clickatell http driver patch - Testers wanted! - Usage info

2006-05-09 Thread Robert
Rene, I'd like to test this patch out, but don't have a Clickatell account. I do have an account at another sms site, offering a HTTP API. What and where should I change in your patch, to make it compatible with the other site? In other words, what is specific to Clickatell? Thanks, Robert

Sending Outgoing SMS in UCS2 Format?

2006-05-09 Thread Kavuri Prasad
Dear all,We would like to send out going sms in UCS2 (UTF16) format. This is because some dialects are not supporting UTF-7 and by default kannel sending sms in UTF-7 format. Please give me a idea/solution. -- Thanks,Prasad KavuriSoftware ConsultantMobile Lifestyle BerhadUnit F10 Block 3

Re: Kannel Installation on Solaris 9 - port 8080 and 9201 issue

2006-05-09 Thread OLOTU Olayinka
Thanks. Now my kannel wap runs on Solaris. i configured my phone and ran some tests. the phone connects to wap and browses nicely when it is set to use port 9201, but when i try port 8080 i get no connection at all. please how can i configure kannel to accept wap connections from ports 8080 and

Account and credits management.

2006-05-09 Thread supporto1
Hi, I wanted to ask how to manage accounts and credits with kannel. I do an example. I buy 10k sms credits from my smsc and I resell 100 of them to another person. How to add this person to kannel and limit his/hes sendings to 100 sms? Do I have to add another smsc user? Thank You

Re: Account and credits management.

2006-05-09 Thread Vincent CHAVANIS
This is not available inside kannel. But making it with php/mysql is trivial Vincent -- Telemaque - NICE - (FR) Service Technique - Developpement http://www.telemaque.fr/ [EMAIL PROTECTED] Tel : +33 4 93 97 71 64 (fax 68) - Original Message - From: [EMAIL PROTECTED] To:

gsm modem speed problem

2006-05-09 Thread Hofferek Attila
Hi all. I've got a siemens tc35 modem, and I can communicate with it using minicom, 9600 8n1, but kannel can't use it. First, trying on (configured) 9600 bps, then trying from 38400, decrementing to 9600, then fails. Sorry, but log pieces aren't available actually. Is this a common problem? The

Re: gsm modem speed problem

2006-05-09 Thread Nikola Goran Cutura
Hi, I had similar problem with Siemens MC35i. What helped me was to remove autodetect and specify 9600 in configuration file. Regards, NGC - Original Message - From: Hofferek Attila [EMAIL PROTECTED] To: users@kannel.org Sent: Tuesday, May 09, 2006 3:13 PM Subject: gsm modem speed

RE: smsbox-port in non-exisiting group

2006-05-09 Thread Luis Valencia
No, its still there, I just modify the kannel.conf group=core, sqlbox and smsbox are with the changes you advice me to make. KANNEL.CONF group = core admin-port = 13000 smsbox-port = 13002 admin-password = bar wdp-interface-name = * log-file = /var/log/bearerbox.log log-level = 0

Re: gsm modem speed problem

2006-05-09 Thread Nikola Goran Cutura
You need to set speed = 9600 in your 'smsc' group. That is what I have. Without it, Kannel will rotate speeds without success. My 'smsc' group has entry smsc = at not 'at2' like yours. I read somewhere that Kannel version 1.2 uses at2 and Kannel version 1.4 uses 'at'. Probably has nothing

RE: ID column in SQLBOX

2006-05-09 Thread Luis Valencia
Hi Nikola, This will definitely answer your question, regards id: Description: The unique ID assigned to each SMS handled by the Kannel system. Supported Values: Format is: ---- - time_low - time_mid - time_hi_and_version -

Re: ID column in SQLBOX

2006-05-09 Thread Nikola Goran Cutura
Hi Luis, Thank you for your response. I already read this mail and it confuses me even more. As you can see, format of column 'id' is Format is: ----and I assume that '-' is a dash, not subtraction operator. Therefore, I think this implies that 'id' should

RE: ID column in SQLBOX

2006-05-09 Thread Rene Kluwen
Okies... Some info. The SMPP message ID is managed internally in Kannel and is NOT forwarded to smsbox and/or sqlbox. If you are looking for this value, you are out of luck. The Msg struct has an ID value that is stored in a long(?) if I remember correctly. The format that you mention is

RE: [Kannel 0000322]: Clickatell http driver patch - Testers wanted!- Usage info

2006-05-09 Thread Rene Kluwen
I think the best way to answer this question is to redirect you to the source code. The Clickatell API code is located in smsc/smsc_http.c. There is also other HTTP based SMSC's in there. You can look at them for an example. Rene Kluwen Chimit -Original Message- From: [EMAIL PROTECTED]

Re: ID column in SQLBOX

2006-05-09 Thread Nikola Goran Cutura
Thanks, Rene I looked at the source code meanwhile and noticed (in sqlbox_mysql.c and sqlbox_pgsql.c) that 'id' is not used. It is present in 'create table' statements but not in 'insert' statements. Line that is supposed to read value after 'select' statement is commented out. (Something

Re: [Kannel 0000322]: Clickatell http driver patch - Testers wanted!- Usage info

2006-05-09 Thread Alejandro Guerrieri
For the record, we are now using the Clickatell HTTP driver on production and it works like a charm. We are not stressing it a lot yet, but we will in the future and so far we have no issues with it. We are using to complement our premium number in Spain. Thank's Rene for [yet another] very

SQLBOX question

2006-05-09 Thread Nikola Goran Cutura
Hi all, I have bearerbox running and connected to SMSCs. I have sqlbox running. I have NO smsbox running. I expect that in this configuration, sqlbox stores all incoming messages. However, when I send a message from smsc to bearerbox, I get warning: WARNING: smsbox_list empty! and NO

Enquire_link configuration ?

2006-05-09 Thread Mathieu Bruneau
Hi Guys,In the process of setting up a specific SMSC connections with a specific operators I ran into a problem. After checking my connection they realized that I was sending enquire_link every 60 sec fixed time. They actually wants me to send enquire_link after 60 sec if there is no other

Problem while configuring Kannel with MySql

2006-05-09 Thread Kuppi
Hi all, i 've got a problem while configuring kannel with mysql Support. See below the message. Can anyone help me with informations whats going wrong? My System is Sun E 210 with Solaris 10 Bulid 01/06 Configuring DB support ... checking whether to compile with MySQL support... searching

Re: SQLBOX question

2006-05-09 Thread Nikola Goran Cutura
Thanks for the prompt answer! I read the sqlbox FAQ but my understanding was that sqlbox sits in the middle so that bearerbox and smsbox don't see each other. What confuses me is sqlbox insert table. It is supposed to contain messages (MO/MT) not yet processed by their destination handlers

Re: Concatenate incoming messages?

2006-05-09 Thread Janne Mikkonen
Yep, I got it the fist time ;-). But I didn't ask that, but can kannel do this. And the answer seem to be no. Hopefully this will be a feature in future releases. Thank you for your answers Prasad Kavuri, I do appreciate it. Regards, Janne

Re: Re[2]: How to support Thai language?

2006-05-09 Thread Kavuri Prasad
Thanks Benoit, Yes, In Thailand GSM operators exists. As you said Thai characters only supported by UCS2. That means we need to send sms from kannel to phone in UCS2 format instead of default UTF-7. But I don't know where to change the encoding/decoding parameter for this. I tried sending

RE: smsbox-port in non-exisiting group

2006-05-09 Thread Rayson Lee
Dear Luis, I think the problem may caused by missing of core information while starting Sqlbox. You can either combine your configuration files into one single file or include kannel.conf in sqlbox.conf. Please try. Best regards, Rayson Lee InnoAge Hong Kong Limited

Re: How to manage new users through scripts

2006-05-09 Thread Willy
Hi, I suggest you grant the user by script and stored in your own database, so only a user is known has authority can send sms. It is easier I guess ;) Regards Willy - Original Message - From: [EMAIL PROTECTED] To: users@kannel.org Sent: Tuesday, May 09, 2006 4:41 PM Subject: How to