Re: regex for sms-service group

2009-03-18 Thread Latitude Berlin
Here is what I have in conf file: ... group = sms-service keyword = default keyword-regex = [:print:]*_STOP accepted-smsc = csoft_s3;csoft_s4 catch-all=true max-messages=0 get-url = http://localhost:50351/RServlet?from=%pto=%Ptext=%a ... My intentions are to send all the incoming SMS that follow

Re: regex for sms-service group

2009-03-18 Thread Nikos Balkanas
Please address the list. You have a few problems. keyword-regex overrides keyword. So scratch default out. Also I don't think that [:print:] is perl like regular expression. Why don't you try: keyword-regex = [^]*_STOP keyword-regex = [a-za-z...@]*_STOP keyword =