On Fri, 2002-04-12 at 13:19, David Smith wrote: > Dear All, > > I am a newly added member of this service. I need some > information regarding the Kannel SMS Service. I was successful in > integrating the kannel software with SMSC. I need to know what should i > define in the sms-service in such a way that when i send i message from my > cell to it it will reply me a text but msg should be in msgclass=1 that is > flash sms.
Kannel donesn't support setting the fields directly in the config file, so you should have a http page that replies back the text and additional headers, in this case "X-Kannel-MClass: 1". Then, your config file should have accept-x-kannel-headers = true (confirm this name in documentation) If you add ignore-empty = true too, if your cgi returns an empty message, kannel won't reply back to the user. Using the cgi, you can control everything. Just check the X-Kannel headers and compare them to the cgi fields in http-GET > > Thanx > > D.S > >
