RE: 150 sms/sec through kannel

2007-10-15 Thread info.ubichip
What type of backend program are you using ?

 

thanks

 

  _  

From: shehan [mailto:[EMAIL PROTECTED] 
Sent: dimanche 14 octobre 2007 23:05
To: 'Vahid Ghafarpour'
Cc: users@kannel.org
Subject: RE: 150 sms/sec through kannel

 

Tx a lot for info. Backend program can be handle upto 300
sms/sec. So my target can be achieve using kannel.

Br,

Shehan

 

-Original Message-
From: Vahid Ghafarpour [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 15, 2007 11:30 AM
To: shehan
Cc: users@kannel.org
Subject: Re: 150 sms/sec through kannel

 

My through put in pick time is over 500 mps (MT+MO) but you need a good
backend program to handle it.



On 10/15/07, shehan  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  wrote:

Hi all,

I need to push 150 sms/sec through kannel. Can I do that using kannel ??

BR,

Shehan




-- 
--Vahid Ghafarpour.
http://vahid.ghafarpour.ir/
vahid at ghafarpour dot ir
ghafarpour at gmail dot com 



  _  

Antivirus avast! http://www.avast.com : message Sortant sain. 


Base de donnees virale (VPS) : 000781-1, 14/10/2007
Analyse le : 14/10/2007 23:49:12
avast! - copyright (c) 1988-2007 ALWIL Software.




RE: 150 sms/sec through kannel

2007-10-15 Thread Δημήτρης Ευμορφόπουλος
We have pushed kannel to 3500 SMS/sec (both MO/MT) using 3 systems with dual 
xeons. Of course our application was NOT Apache and php yet kannel was 
unaltered 1.4.1.

 

Dimitris Evmorfopoulos





From: shehan [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 15, 2007 9:01 AM
To: users@kannel.org
Subject: 150 sms/sec through kannel

 

Hi all,

I need to push 150 sms/sec through kannel. Can I do that using kannel ??

BR,

Shehan



Sony Ericsson GS64 Quad-Band RS232 Compatibility?

2007-10-15 Thread Ben Williamson

Hello,
	I was curious if anyone out there had successfully used a GS64 from  
sony ericicsson in conjunction Kannel,
It appears to be in the same product family as the GR47, but I wanted  
to check with the list prior to purchasing.



Any feedback would be appreciated,

thanks!

-Ben




Question about UCP

2007-10-15 Thread Dr Sexpert
I'm thinking about deploying Kannel as a SMS gateway and I'm wondering what 
versions of the UCP protocol does it support. Does it support v6?

Thanks




   

Moody friends. Drama queens. Your life? Nope! - their life, your story. Play 
Sims Stories at Yahoo! Games.
http://sims.yahoo.com/  

Re: Kannel - MySQL

2007-10-15 Thread Michael Habashy
do you have to put somehting in the url post ??? for this dlr to work ???
I have been trying to get kannel to insert anything into the table, but
nothing shows up. my table looks like htis:


CREATE TABLE `dlr` (
  `smsc` varchar(40) default NULL,
  `ts` varchar(40) default NULL,
  `destination` varchar(40) default NULL,
  `source` varchar(40) default NULL,
  `service` varchar(40) default NULL,
  `url` varchar(255) default NULL,
  `mask` smallint(6) default NULL,
  `status` smallint(6) default NULL,
  `boxc` varchar(40) default NULL,
  `dlr_id` bigint(20) unsigned NOT NULL auto_increment,
  `tsread` timestamp NOT NULL default CURRENT_TIMESTAMP,
  PRIMARY KEY  (`dlr_id`),
  UNIQUE KEY `dlr_id` (`dlr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

and my kannel.conf looks like this :

group = core

dlr-storage = mysql



group = mysql-connection

id = mydlr

host = localhost

username = krall

password = jlopez

database = sms

max-connections = 1

group = dlr-db

id = mydlr

table = dlr

field-smsc = smsc

field-timestamp = ts

field-destination = destination

field-source = source

field-service = service

field-url = url

field-mask = mask

field-status = status

field-boxc-id = boxc





On 8/30/07, Nicholas Amorim [EMAIL PROTECTED] wrote:

 You should add this parameter in core group:

 dlr-mask = 31

 Why 31 ? The dlrs status are 1, 2, 4, 8, 16, which added together results
 in 31. It reports all the status. If you only want to know if the message is
 received, dlr-mask should be 1, and so on.

 Then, you can add a dlr-url parameter in the sendsms-user group. Every
 time kannel process a sms, it will access this url.

 You can check the url format in the kannel userguide, which you can
 download here:

 http://www.kannel.org/userguide.shtml

 If you have any other questions, bring in it on! :)





wap2.0 and kannel ???

2007-10-15 Thread gurcan karakoc

Hi,
 
I'm new to WAP and Kannel and I have a general question about Kannel. I
want to use a java program to test wap 2.0 functionality. I have read
through the documentation and I have seen hints that Kannel supports WAP
2.0, but I am not sure if this is true. How do I activate WAP 2.0
functionality in WAP, what settings do I have to change in the
configuration file? Do I even need to make connection over a WAP-Gateway
to test WAP 2.0?
 
regards,
gurcan karakoc

_
Windows Live Writer Beta - Veröffentlichen Sie Multimediainhalte in Ihrem Blog!
http://get.live.com/betas/writer_betas

Re: is there a way to send sms text from mysql db??

2007-10-15 Thread Alejandro Guerrieri
Looks fine, you'll have to specify dlr sql storage on core group also.

The unique key for a primary key field is unneccesary I suppose, but
won't hurt anyway (primary keys _are_ unique by definition).

Kannel logs the message as sent when the SMSC accepts it. You'll also
have to develop a script to handle DLR's of course.

The process is as follows:

- When you queue a message by any means (for example, inserting a row
on send_sms or calling the sendsms interface), you should set dlr-mask
(to tell which message status you want to capture) and dlr-url
(pointing to your dlr script).

- You should include some sort of message_id identifier on your
dlr-url field in order to be able to match your message against the
dlr request. What I do is first insert the message on a table and use
the insert-id from that table as message identifier to pass to the
dlr-url.

- When the message status changes, kannel calls the url script with
the parameters properly loaded. The script will be called as many
times as the message status changes.

- Your script should update the table (or do whatever you want it to
do). Since the message-id will be included you shouldn't have any
problem matching against it.

Hope it helps,

Alejandro


On 10/15/07, Michael Habashy [EMAIL PROTECTED] wrote:
 I have been searching for stuff on dlr and sqlbox --unable to find any
 thing.
 I have used the config below for mysql config.
 I have a couple of questions:
 1. Is there anyhting I am missing???
 2. will kannel log the sms messege after it sends it ? or before?  I just
 want to know that kannel has sent the messege.  I can always write a sql
 query to see if the db was updatedif not ..i can try to send it anohter
 way.


 group = mysql-connection


 id = mydlr

 host = localhost

 username = joey

 password = jtjjj

 database = sms

 max-connections = 1

 group = dlr-db

 id = mydlr

 table = dlr

 field-smsc = smsc

 field-timestamp = ts

 field-destination = destination

 field-source = source

 field-service = service

 field-url = url

 field-mask = mask

 field-status = status

 field-boxc-id = boxc


 CREATE TABLE `dlr` (
   `smsc` varchar(40) default NULL,
   `ts` varchar(40) default NULL,
   `destination` varchar(40) default NULL,
   `source` varchar(40) default NULL,
   `service` varchar(40) default NULL,
   `url` varchar(255) default NULL,
   `mask` smallint(6) default NULL,
   `status` smallint(6) default NULL,
   `boxc` varchar(40) default NULL,
   `dlr_id` bigint(20) unsigned NOT NULL auto_increment,
   `tsread` timestamp NOT NULL default CURRENT_TIMESTAMP,
   PRIMARY KEY  (`dlr_id`),
   UNIQUE KEY `dlr_id` (`dlr_id`)
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;





 On 10/12/07, Alejandro Guerrieri [EMAIL PROTECTED] wrote:
  Michael,
 
  You can use sqlbox to enqueue MT messages, but it won't provide a
  native way to handle errors.
 
  In order to handle errors and delivery reports, you should use the DLR
  functionality on kannel. It could be used to save message delivery
  status on Kannel side or, if your SMSC supports it, to track the
  delivery of the messages up to the real phone terminals.
 
  Check on the user guide and list archives for more info about DLR's
  and sqlbox, I think that with some script glue and thos two elements
  you can achieve what you're looking for.
 
  Hope it helps,
 
  Alejandro
  On 10/12/07, Michael Habashy [EMAIL PROTECTED] wrote:
   Can i send sms messeges from mysql ?
   I would like to get a better way of tracking messeges that get sent out
 via
   kannel.
  
   There is no  error handlign...that i can see in kannel to help that
 along.
  
   thanks
   mjh
 
 
  --
  Alejandro Guerrieri
  Magicom
  http://www.magicom-bcn.net/
  LinkedIn: http://www.linkedin.com/in/aguerrieri
 
 




-- 
Alejandro Guerrieri
Magicom
http://www.magicom-bcn.net/
LinkedIn: http://www.linkedin.com/in/aguerrieri