I am trying to configure kannel to conect to a emi/ucp SMSC and process all messages comming in with get-url. I also want to send the replies back to the same smsc they came from. The bearerbox logs indicate I am succesfully connecting to the SMSC; I am also receiving SMS-s but the get-url is never accessed. The fakesmsc does the same thing the real SMSC does. Could you tell me why? I am quoting the kannel.conf I use in both bearerbox and smsbox (I am not intersted in wap for now). My OS is Linux with Kannel 1.3.1 and I invoke kannel with "smsbox kannel.conf" "bearerbox kannel.conf" The smsbox daemon is always connected to the bearerbox daemon.
-------------------kannel.conf---------------------------- group = core admin-port = 13000 admin-password = none admin-deny-ip = "*.*.*.*" admin-allow-ip = "127.0.0.1;192.168.0.1;<localip>" smsbox-port = 13001 box-deny-ip = "*.*.*.*" box-allow-ip = "127.0.0.1;192.168.0.1;<localip>" log-level = 1 maximum-queue-length = -1 group = smsbox bearerbox-host = 127.0.0.1 smsbox-id = box1 sendsms-port = 13002 global-sender = <shortnr> log-level = 1 group = smsc smsc = emi2 smsc-id = smsc1 allowed-smsc-id = smsc1 host = <remoteip> port = 5010 our-port = 9325 receive-port = 8325 keepalive = 55 idle-timeout = 0 retry = true my-number = <shortnr> group = smsc smsc = fake port = 13003 group = sms-service keyword = test get-url = "http://smsbox/process.php?sender=%p&text=%r&time=%t&smsc_id=%i" group = sms-service keyword = default get-url = "http://smsbox/process.php?sender=%p&text=%r&time=%t&smsc_id=%i" group = sendsms-user username = smsbox password = foo default-sender = 1325 split-chars = "#" -------end---------kannel.conf----------------------------
