MySQL Support with pre compiled Binaries

2008-07-01 Thread Engel L
Hi,

I have installed Kannel on Ubuntu using a .deb precompiled binary and I want
to enable MySQL support for dlr. Must I unistall the already installed
package and compile the sources myself to enable mysql support? I am hoping
there's something I can do/add/configure to enable mysql with my current
installation as is.

Please Assist

Engel Linus


Getting Started with Kannel, Need some help

2008-07-01 Thread code dude
Hi Guys ,I am kannel new bee , dont have any idea about ...I have written
programs which used to sent AT commands over serial connections

I have searched internet about lot about support harwdware , do could nt
find any information like

   1. Which GSM modems are guaranteed to work with kannel (also if available
   in India)
   2. Is serial connection required ? or can use USB too ?
   3. Which phones are know to work with Kannel and how to make them work
   with USB connection
   4. Does anyone on list had made kannel work with Motorola A1200 , Nokia
   3320


My OS is ubuntu 8.04

Thanks,
Gaurav


Re: MySQL Support with pre compiled Binaries

2008-07-01 Thread Stipe Tolj

Engel L schrieb:

Hi,
 
I have installed Kannel on Ubuntu using a .deb precompiled binary and I 
want to enable MySQL support for dlr. Must I unistall the already 
installed package and compile the sources myself to enable mysql 
support? I am hoping there's something I can do/add/configure to enable 
mysql with my current installation as is.


if the Ubuntu package maintainer did not set the mysql support at configure 
time, then there is no way (at the moment) to hook in the mysql support afterwards.


I'd suggest you to checkout a CVS HEAD branch and re-compile on your own.

Stipe

---
Kölner Landstrasse 419
40589 Düsseldorf, NRW, Germany

tolj.org system architecture  Kannel Software Foundation (KSF)
http://www.tolj.org/  http://www.kannel.org/

mailto:st_{at}_tolj.org   mailto:stolj_{at}_kannel.org
---



Re: Generic HTTP SMSC configuration

2008-07-01 Thread Stipe Tolj

Eduardo Raad schrieb:
I read in the user guide that the generic HTTP SMSC connector should 
only be used for MT routing, although I configured it as it was a Kannel 
HTTP SMSC connector and I could receive MO's using the URI 
/?from=to=username=password=text=. Is this OK and user guide is 
wrong or is there some catch in there?


yep, you're correct here.

I preserved the Kannel-style MO interface to have at least a known-way to get 
MOs transported for that smsc type, here is the corresponding function pointer 
assignment in the code that proves it:


else if (octstr_case_compare(type, octstr_imm(generic)) == 0) {
/* we need at least the criteria for a successfull sent */
if ((os = cfg_get(cfg, octstr_imm(status-success-regex))) == NULL) {
error(0, HTTP[%s]: 'status-success-regex' required for generic 
http smsc,

  octstr_get_cstr(conn-id));
goto error;
}
conndata-receive_sms = kannel_receive_sms; /* emulate sendsms 
interface */
conndata-send_sms = generic_send_sms;
conndata-parse_reply = generic_parse_reply;

Stipe

---
Kölner Landstrasse 419
40589 Düsseldorf, NRW, Germany

tolj.org system architecture  Kannel Software Foundation (KSF)
http://www.tolj.org/  http://www.kannel.org/

mailto:st_{at}_tolj.org   mailto:stolj_{at}_kannel.org
---