alviN wrote:
whenever i execute lynx -dump "http://mydomain:13013/cgi-bin/sendsms?user=myname&pass=mypass&from=12345&to=629121234567&text=Test"
it replies back "Sent."
is it possible for it to reply a null message instead? because when used on a mobile phone, it sends two messages, the first is the message on the 'text' parameter and the other is 'Sent.'
thanks.
alviN
You mean inside sms-service? Set max-messages to zero. group = sms-service keyword = si url = "http://10.1.0.1/intern/kannel/si.php?to=%p&url=%s&msg=%r" max-messages = 0 Or redirect stdout to /dev/null: lynx -dump http://xxxxxx/ > /dev/null ...Alex
