Basic info

2010-05-17 Thread Manoj B
hi, Please any one can provide the url/s where we can have basic functionality of sqlbox ,smsbox and bearerbox.

Re: Basic info

2010-05-17 Thread jyotiranjan panda
http://www.blogalex.com/archives/46 On Mon, May 17, 2010 at 4:44 PM, Manoj B kannel.ma...@gmail.com wrote: hi, Please any one can provide the url/s where we can have basic functionality of sqlbox ,smsbox and bearerbox.

Regex problems in sms-service and keywords

2010-05-17 Thread fegul
I have two sms-services defined, one that catches messages with a keyword that matches a regular expression (using 'keyword-regex' in the sms-service) and one that catches everything else (using keyword = default) to a different script. The regex compiles and I've tested it using some online

Re: Basic info

2010-05-17 Thread Nikos Balkanas
Hi, That is for sqlbox. For smsbox bearerbox, you specify it in your configuration. Read user's guide about it. BR, Nikos - Original Message - From: jyotiranjan panda To: Manoj B Cc: users@kannel.org Sent: Monday, May 17, 2010 2:33 PM Subject: Re: Basic info

Re: Basic info

2010-05-17 Thread Nikos Balkanas
Hi, That is for sqlbox. For smsbox bearerbox, you specify it in your configuration. Read user's guide about it. BR, Nikos - Original Message - From: jyotiranjan panda To: Manoj B Cc: users@kannel.org Sent: Monday, May 17, 2010 2:33 PM Subject: Re: Basic info

Re: Regex problems in sms-service and keywords

2010-05-17 Thread Nikos Balkanas
Hi, Have you tried it? It doesn't look right. What is \w? Test it by part: [0-9a-za-z.-...@[0-9a-za-z._]+ And add more parts as you go. BR, Nikos - Original Message - From: fegul ftseg...@gmail.com To: users@kannel.org Sent: Monday, May 17, 2010 4:44 PM Subject: Regex problems in

Re: Regex problems in sms-service and keywords

2010-05-17 Thread fegul
\w is meant to match any word character. If you insert the expression into this tester, you can try various patterns to see what it matches: http://gskinner.com/RegExr/ the email address that I type into the testing tool and the email address that I use as the keyword in the text message is the

Re: Regex problems in sms-service and keywords

2010-05-17 Thread Nikos Balkanas
Regardless, test by parts. BR, Nikos - Original Message - From: fegul ftseg...@gmail.com To: users@kannel.org Sent: Monday, May 17, 2010 5:06 PM Subject: Re: Regex problems in sms-service and keywords \w is meant to match any word character. If you insert the expression into

Re: Regex problems in sms-service and keywords

2010-05-17 Thread fegul
I'm continuing to do that however I find it strange that regular expressions (which I've always thought were fairly universal) are being interpreted differently by Kannel than by the test utilities that I've used... I wonder if other Kannel users have experienced this? Nikos Balkanas wrote:

Re: Regex problems in sms-service and keywords

2010-05-17 Thread Nikos Balkanas
Ho, I dunno. I have been using regexp for ages, and it is the first time I see '\w'. I am not sure if it is part of the standard regexp. Even grep -E or egrep in linux doesn't understand it. Why should kannel? If you need more flexibility, you can compile with pcre and use perl-like