On 12/8/06, andrew teo <[EMAIL PROTECTED]> wrote:
Hello! When I define an sms service: group = sms-service keyword = service url = "http://localhost/service.php?from=%p&other=%r&text=%a" accept-x-kannel-headers = true I manage to get the sender number from "from" and the entire sms from "text". However, "other" is empty. Am I right to assume that %r is supposed to return the rest of the sms after the first word of the sms? For eg. if I send "service my message", "service" shld be removed and I should get "my message" Is this right? If so, what am I doing wrongly? Thanks for your advice! :)
%a the entire message %r rest if the message, ie. words not yet used (keyword not included) In your case, %a uses the entire message, and thus, nothing is left to be used by %r -- Labor and Joy
