Hi,

I am trying to setup kannel 1.5 in such a way that

(1) It gives a DLR for every message I submit using
D
(2) It receives any message and submits it to another URL as specified in kannel.conf.

However, when I try to send a message using , I do not see any DLR being pushed.


Also, I would like to know , when will a get-url specified in sms-service with default keyword called . Will it be called , when a message is sent from my system using the sendsms script , or when a message is pushed to my system.


My Kannel.conf :

#
# THIS IS A SAMPLE CONFIGURATION FOR KANNEL
#
# For any modifications to this file, see Kannel User Guide
# If that does not help, send email to [email protected]
#

group = core
admin-port = 13186
admin-password = Ka123
#status-password = foo
smsbox-port = 13187
#admin-deny-ip = ""
#admin-allow-ip = ""
log-file = "/root/kannel15/logs/kannel.log"
log-level = 0
access-log = "/root/kannel15/logs/access.log"
#http-proxy-host = "127.0.0.1"
#http-proxy-port = 8080
#http-proxy-exceptions = "127.0.0.1"
#http-proxy-username = "user"
#http-proxy-password = "password"
#ssl-certkey-file = "mycertandprivkeyfile.pem"
dlr-storage = internal

# Smsbox related
#smsbox-port = 13187
#box-deny-ip = "*.*.*.*"
#box-allow-ip = "127.0.0.1"
#unified-prefix = "00358,0"
#white-list = "http://127.0.0.1/white-list.txt";
#black-list = "http://127.0.0.1/black-list.txt";
#store-file = "/root/kannel15/logs/kannel.store"

# Wapbox related
#wapbox-port = 13002
#udp-deny-ip = "*.*.*.*"
#udp-allow-ip = "127.0.0.1"
#wdp-interface-name = "*"


# SMSC CONNECTIONS - GLOBAL FIELDS
#group = smsc
#smsc =
#smsc-id = ID
#denied-smsc-id = "X;Y"
#allowed-smsc-id = "Z"
#preferred-smsc-id = "W"
#allowed-prefix = "040;050"
#denied-prefix = "060;070"
#alt-charset =


# SMSC Nokia CIMD2
#group = smsc
#smsc = cimd2
#host =
#port =
#smsc-username =
#smsc-password =
#keepalive =
#sender-prefix =


# SMSC EMI
#group = smsc
#smsc = emi2
#smsc = emi_ip to use the old implementation
#host =
#port =
#smsc-username =
#smsc-password =
#device = /dev/
#phone =
#our-port =
#receive-port =
#connect-allow-ip =
#keepalive =
#flow-control =


# SMSC SMPP
group = smsc
smsc = smpp
host = myhost
port = myport
#receive-port =
smsc-username = mu
smsc-password = mp
system-type = generic
#address-range =
throughput = 10
wait-ack = 600
keepalive=1
transceiver-mode = 1
enquire-link-interval = 1200
source-addr-ton = 0
source-addr-npi = 1
dest-addr-ton = 1
dest-addr-npi = 1
max-pending-submits = 10
interface-version = 34

# SMSC SEMA
#group = smsc
#smsc = sema
#device = /dev/tty0
#smsc_nua = (X121 smsc address)
#home_nua = (x121 radio pad address)
#wait_report = 0/1 (0 means false, 1 means true)


# SMSC OIS
#group = smsc
#smsc = ois
#host = 103.102.101.100
#port = 10000
#receive-port = 10000
#ois-debug-level = 0


# SMSC GSM
#group = smsc
#smsc = at
#modemtype = wavecom | premicell | siemens | siemens-tc35 | falcom | nokiaphone | ericsson
#device = /dev/ttyS0
#pin = 2345
#validityperiod = 167


# SMSC Fake
#group = smsc
#smsc = fake
#host =
#port =
#connect-allow-ip =


# SMSC HTTP
#group = smsc
#smsc = http
#system-type = kannel
#send-url =
#port =
#connect-allow-ip =
#username =
#password =


# SMSBOX SETUP

group = smsbox
bearerbox-host = localhost
sendsms-port = 13188
#sendsms-chars = "0123456789 +-"
global-sender = 12345
log-file = "/root/kannel15/logs/smsbox.log"
log-level = 0
access-log = "/root/kannel15/logs/smsbox-access.log"
#white-list =
#black-list =
#reply-couldnotfetch =
#reply-couldnotrepresent =
#reply-requestfailed =
#reply-emptymessage =


# SEND-SMS USERS

group = sendsms-user
username = muser
password = mypass
#user-deny-ip = ""
#user-allow-ip = ""

# this sender is for Kannel relay testing (http_smsc)

group = sendsms-user
username = kannel
password = rL4y
user-deny-ip = "*.*.*.*"
user-allow-ip = "127.0.0.1"
#name = service_kannel
#forced-smsc = ID
#default-smsc = ID
#faked-sended =
#max-messages = 1
#concatenation = 1
#split-chars =
#split-suffix =
#omit-empty =
#header =
#footer =
#allowed-prefix =
#denied-prefix =
#white-list =
#black-list =



# SMS SERVICES

#group = sms-service
#name = nothing
#keyword = nop
#aliases = "noppy;niente"
#text = "You asked nothing and I did it!"
#get-url = "http://";
#post-url = "http://";
#file = "/tmp/"
#accepted-smsc = ID
#allowed-prefix =
#denied-prefix =
#catch-all = false
#send-sender = false
#strip-keyword = false
#faked-sender =
#max-messages = 1
#accept-x-kannel-headers = false
#assume-plain-text = false
#concatenation = false
#split-chars =
#split-suffix = "+"
#omit-empty = true
#header =
#footer =
#prefix =
#suffix =
#white-list =
#black-list =


# SMS SERVICE GET-URL EXAMPLE
#group = sms-service
#keyword = relay
#get-url = "http://localhost/service?phone=%p&text=%r&binary=%b&smsc=$i&time=%t


# SMS SERVICE black-list
#group = sms-service
#keyword = black-list
#text = "You are not alowed to use this service, Go away!"


# SMS SERVICE Default
# there should be default always
group = sms-service
keyword = default
catch-all = 1
#text = "No service specified"
get-url = "xxxx-url?msisdn=%p&msg=%a


My Smsbox.log:

2012-10-14 12:59:08 [12928] [0] INFO: Added logfile `/root/kannel15/logs/smsbox.log' with level `0'.
2012-10-14 12:59:08 [12928] [0] INFO: Service global sender set as '57677'
2012-10-14 12:59:08 [12928] [0] INFO: Logging accesses to '/root/kannel15/logs/smsbox-access.log'. 2012-10-14 12:59:08 [12928] [0] INFO: Started access logfile `/root/kannel15/logs/smsbox-access.log'.
2012-10-14 12:59:08 [12928] [0] INFO: HTTP: Opening server at port 13188.
2012-10-14 12:59:08 [12928] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller) 2012-10-14 12:59:08 [12928] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread) 2012-10-14 12:59:08 [12928] [1] DEBUG: Thread 1 (gwlib/fdset.c:poller) maps to pid 12928. 2012-10-14 12:59:08 [12928] [2] DEBUG: Thread 2 (gwlib/http.c:server_thread) maps to pid 12928. 2012-10-14 12:59:08 [12928] [2] DEBUG: HTTP: Including port 13188, fd 10 for polling in server thread
2012-10-14 12:59:08 [12928] [0] INFO: Set up send sms service at port 13188
2012-10-14 12:59:08 [12928] [0] DEBUG: Started thread 3 (gw/smsbox.c:sendsms_thread) 2012-10-14 12:59:08 [12928] [0] DEBUG: ---------------------------------------------- 2012-10-14 12:59:08 [12928] [3] DEBUG: Thread 3 (gw/smsbox.c:sendsms_thread) maps to pid 12928. 2012-10-14 12:59:08 [12928] [0] DEBUG: Kannel smsbox version svn-r5004 starting
2012-10-14 12:59:08 [12928] [0] DEBUG:   dumping group (sendsms-user):
2012-10-14 12:59:08 [12928] [0] DEBUG:     <group> = <sendsms-user>
2012-10-14 12:59:08 [12928] [0] DEBUG:     <password> = <@app88>
2012-10-14 12:59:08 [12928] [0] DEBUG:     <username> = <astroApp88>
2012-10-14 12:59:08 [12928] [0] DEBUG:   dumping group (sendsms-user):
2012-10-14 12:59:08 [12928] [0] DEBUG:     <group> = <sendsms-user>
2012-10-14 12:59:08 [12928] [0] DEBUG:     <user-deny-ip> = <*.*.*.*>
2012-10-14 12:59:08 [12928] [0] DEBUG:     <password> = <rL4y>
2012-10-14 12:59:08 [12928] [0] DEBUG:     <username> = <kannel>
2012-10-14 12:59:08 [12928] [0] DEBUG:     <user-allow-ip> = <127.0.0.1>
2012-10-14 12:59:08 [12928] [0] DEBUG: Started thread 4 (gw/smsbox.c:obey_request_thread) 2012-10-14 12:59:08 [12928] [0] DEBUG: Started thread 5 (gw/smsbox.c:url_result_thread) 2012-10-14 12:59:08 [12928] [0] DEBUG: Started thread 6 (gw/smsbox.c:http_queue_thread) 2012-10-14 12:59:08 [12928] [4] DEBUG: Thread 4 (gw/smsbox.c:obey_request_thread) maps to pid 12928.
2012-10-14 12:59:08 [12928] [0] DEBUG: Connecting to <127.0.0.1>
2012-10-14 12:59:08 [12928] [6] DEBUG: Thread 6 (gw/smsbox.c:http_queue_thread) maps to pid 12928. 2012-10-14 12:59:08 [12928] [5] DEBUG: Thread 5 (gw/smsbox.c:url_result_thread) maps to pid 12928. 2012-10-14 12:59:08 [12928] [0] INFO: Connected to bearerbox at localhost port 13187. 2012-10-14 12:59:08 [12928] [0] DEBUG: Started thread 7 (gw/heartbeat.c:heartbeat_thread) 2012-10-14 12:59:08 [12928] [7] DEBUG: Thread 7 (gw/heartbeat.c:heartbeat_thread) maps to pid 12928. 2012-10-14 13:04:57 [12928] [2] DEBUG: HTTP: Creating HTTPClient for `127.0.0.1'. 2012-10-14 13:04:57 [12928] [2] DEBUG: HTTP: Created HTTPClient area 0x7f3b40000ad0. 2012-10-14 13:04:57 [12928] [3] INFO: smsbox: Got HTTP request </cgi-bin/Fsendsms> from <127.0.0.1> 2012-10-14 13:04:57 [12928] [3] DEBUG: Status: 404 Answer: <Unknown request.> 2012-10-14 13:04:57 [12928] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 13:04:57 [12928] [3] INFO: smsbox: Got HTTP request </favicon.ico> from <127.0.0.1> 2012-10-14 13:04:57 [12928] [3] DEBUG: Status: 404 Answer: <Unknown request.> 2012-10-14 13:04:57 [12928] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 13:05:37 [12928] [3] INFO: smsbox: Got HTTP request </cgi-bin/sendsms> from <127.0.0.1>
2012-10-14 13:05:37 [12928] [3] INFO: sendsms used by <astroApp88>
2012-10-14 13:05:37 [12928] [3] INFO: sendsms sender:<astroApp88:57677> (127.0.0.1) to:<919869136505> msg:<ChargingT> 2012-10-14 13:05:37 [12928] [3] DEBUG: Stored UUID 4eea8d28-6a24-48e2-af89-29c956f30061
2012-10-14 13:05:37 [12928] [3] DEBUG: message length 9, sending 1 messages
2012-10-14 13:05:37 [12928] [3] DEBUG: Status: 202 Answer: <Sent.>
2012-10-14 13:05:37 [12928] [3] DEBUG: Delayed reply - wait for bearerbox
2012-10-14 13:05:37 [12928] [0] DEBUG: Got ACK (0) of 4eea8d28-6a24-48e2-af89-29c956f30061 2012-10-14 13:05:37 [12928] [0] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'.
2012-10-14 13:06:37 [12928] [1] DEBUG: Timeout for fd:24 appears.
2012-10-14 13:06:37 [12928] [1] DEBUG: HTTP: Destroying HTTPClient area 0x7f3b40000ad0. 2012-10-14 13:06:37 [12928] [1] DEBUG: HTTP: Destroying HTTPClient for `127.0.0.1'. 2012-10-14 13:51:14 [14000] [0] INFO: Added logfile `/root/kannel15/logs/smsbox.log' with level `0'.
2012-10-14 13:51:14 [14000] [0] INFO: Service global sender set as '57677'
2012-10-14 13:51:14 [14000] [0] INFO: Logging accesses to '/root/kannel15/logs/smsbox-access.log'. 2012-10-14 13:51:14 [14000] [0] INFO: Started access logfile `/root/kannel15/logs/smsbox-access.log'.
2012-10-14 13:51:14 [14000] [0] INFO: HTTP: Opening server at port 13188.
2012-10-14 13:51:14 [14000] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller) 2012-10-14 13:51:14 [14000] [1] DEBUG: Thread 1 (gwlib/fdset.c:poller) maps to pid 14000. 2012-10-14 13:51:14 [14000] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
2012-10-14 13:51:14 [14000] [0] INFO: Set up send sms service at port 13188
2012-10-14 13:51:14 [14000] [0] DEBUG: Started thread 3 (gw/smsbox.c:sendsms_thread) 2012-10-14 13:51:14 [14000] [0] DEBUG: ---------------------------------------------- 2012-10-14 13:51:14 [14000] [0] DEBUG: Kannel smsbox version svn-r5004 starting 2012-10-14 13:51:14 [14000] [2] DEBUG: Thread 2 (gwlib/http.c:server_thread) maps to pid 14000. 2012-10-14 13:51:14 [14000] [3] DEBUG: Thread 3 (gw/smsbox.c:sendsms_thread) maps to pid 14000. 2012-10-14 13:51:14 [14000] [2] DEBUG: HTTP: Including port 13188, fd 10 for polling in server thread
2012-10-14 13:51:14 [14000] [0] DEBUG:   dumping group (sendsms-user):
2012-10-14 13:51:14 [14000] [0] DEBUG:     <group> = <sendsms-user>
2012-10-14 13:51:14 [14000] [0] DEBUG:     <password> = <X>
2012-10-14 13:51:14 [14000] [0] DEBUG:     <username> = <Y>
2012-10-14 13:51:14 [14000] [0] DEBUG:   dumping group (sendsms-user):
2012-10-14 13:51:14 [14000] [0] DEBUG:     <group> = <sendsms-user>
2012-10-14 13:51:14 [14000] [0] DEBUG:     <user-deny-ip> = <*.*.*.*>
2012-10-14 13:51:14 [14000] [0] DEBUG:     <password> = <rL4y>
2012-10-14 13:51:14 [14000] [0] DEBUG:     <username> = <kannel>
2012-10-14 13:51:14 [14000] [0] DEBUG:     <user-allow-ip> = <127.0.0.1>
2012-10-14 13:51:14 [14000] [0] DEBUG: Started thread 4 (gw/smsbox.c:obey_request_thread) 2012-10-14 13:51:14 [14000] [0] DEBUG: Started thread 5 (gw/smsbox.c:url_result_thread) 2012-10-14 13:51:14 [14000] [4] DEBUG: Thread 4 (gw/smsbox.c:obey_request_thread) maps to pid 14000. 2012-10-14 13:51:14 [14000] [0] DEBUG: Started thread 6 (gw/smsbox.c:http_queue_thread) 2012-10-14 13:51:14 [14000] [5] DEBUG: Thread 5 (gw/smsbox.c:url_result_thread) maps to pid 14000. 2012-10-14 13:51:14 [14000] [6] DEBUG: Thread 6 (gw/smsbox.c:http_queue_thread) maps to pid 14000.
2012-10-14 13:51:14 [14000] [0] DEBUG: Connecting to <127.0.0.1>
2012-10-14 13:51:14 [14000] [0] INFO: Connected to bearerbox at localhost port 13187. 2012-10-14 13:51:14 [14000] [0] DEBUG: Started thread 7 (gw/heartbeat.c:heartbeat_thread) 2012-10-14 13:51:14 [14000] [7] DEBUG: Thread 7 (gw/heartbeat.c:heartbeat_thread) maps to pid 14000. 2012-10-14 13:52:29 [14000] [2] DEBUG: HTTP: Creating HTTPClient for `127.0.0.1'. 2012-10-14 13:52:29 [14000] [2] DEBUG: HTTP: Created HTTPClient area 0x7f4478000ad0. 2012-10-14 13:52:29 [14000] [2] DEBUG: HTTP: Creating HTTPClient for `127.0.0.1'. 2012-10-14 13:52:29 [14000] [2] DEBUG: HTTP: Created HTTPClient area 0x7f4478000d10. 2012-10-14 13:52:29 [14000] [3] INFO: smsbox: Got HTTP request </cgi-bin/sendsms> from <127.0.0.1> 2012-10-14 13:52:29 [14000] [3] DEBUG: Status: 403 Answer: <Authorization failed for sendsms> 2012-10-14 13:52:29 [14000] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 13:52:29 [14000] [3] INFO: smsbox: Got HTTP request </favicon.ico> from <127.0.0.1> 2012-10-14 13:52:29 [14000] [3] DEBUG: Status: 404 Answer: <Unknown request.> 2012-10-14 13:52:29 [14000] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 13:52:49 [14000] [1] DEBUG: HTTP: Destroying HTTPClient area 0x7f4478000d10. 2012-10-14 13:52:49 [14000] [1] DEBUG: HTTP: Destroying HTTPClient for `127.0.0.1'. 2012-10-14 13:52:57 [14000] [3] INFO: smsbox: Got HTTP request </cgi-bin/sendsms> from <127.0.0.1>
2012-10-14 13:52:57 [14000] [3] INFO: sendsms used by <X>
2012-10-14 13:52:57 [14000] [3] INFO: Illegal characters in 'to' string ('text=ChargingT') vs '0123456789 +-' 2012-10-14 13:52:57 [14000] [3] INFO: sendsms sender:<astroApp88:57677> (127.0.0.1) to:<919869136505 text=ChargingT> msg:<> 2012-10-14 13:52:57 [14000] [3] DEBUG: Stored UUID 78115dd1-ac35-44a0-847c-1e0ac5f41dbb
2012-10-14 13:52:57 [14000] [3] DEBUG: message length 0, sending 1 messages
2012-10-14 13:52:57 [14000] [3] DEBUG: Status: 202 Answer: <Sent. Denied receivers are: text=ChargingT>
2012-10-14 13:52:57 [14000] [3] DEBUG: Delayed reply - wait for bearerbox
2012-10-14 13:52:57 [14000] [0] DEBUG: Got ACK (0) of 78115dd1-ac35-44a0-847c-1e0ac5f41dbb 2012-10-14 13:52:57 [14000] [0] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 13:52:57 [14000] [2] DEBUG: HTTP: Creating HTTPClient for `127.0.0.1'. 2012-10-14 13:52:57 [14000] [2] DEBUG: HTTP: Created HTTPClient area 0x7f4478000ce0. 2012-10-14 13:52:57 [14000] [3] INFO: smsbox: Got HTTP request </favicon.ico> from <127.0.0.1> 2012-10-14 13:52:57 [14000] [3] DEBUG: Status: 404 Answer: <Unknown request.> 2012-10-14 13:52:57 [14000] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 13:53:07 [14000] [1] DEBUG: HTTP: Destroying HTTPClient area 0x7f4478000ce0. 2012-10-14 13:53:07 [14000] [1] DEBUG: HTTP: Destroying HTTPClient for `127.0.0.1'.
2012-10-14 13:54:07 [14000] [1] DEBUG: Timeout for fd:24 appears.
2012-10-14 13:54:07 [14000] [1] DEBUG: HTTP: Destroying HTTPClient area 0x7f4478000ad0. 2012-10-14 13:54:07 [14000] [1] DEBUG: HTTP: Destroying HTTPClient for `127.0.0.1'. 2012-10-14 16:35:11 [14000] [2] DEBUG: HTTP: Creating HTTPClient for `127.0.0.1'. 2012-10-14 16:35:11 [14000] [2] DEBUG: HTTP: Created HTTPClient area 0x7f4478000ad0. 2012-10-14 16:35:11 [14000] [3] INFO: smsbox: Got HTTP request </cgi-bin/sendsms> from <127.0.0.1>
2012-10-14 16:35:11 [14000] [3] INFO: sendsms used by <astroApp88>
2012-10-14 16:35:11 [14000] [3] INFO: sendsms sender:<astroApp88:57677> (127.0.0.1) to:<919869136505> msg:<ChargingT> 2012-10-14 16:35:11 [14000] [3] DEBUG: Stored UUID 3f2acc2f-e99c-4d5d-a038-630b25345b38
2012-10-14 16:35:11 [14000] [3] DEBUG: message length 9, sending 1 messages
2012-10-14 16:35:11 [14000] [3] DEBUG: Status: 202 Answer: <Sent.>
2012-10-14 16:35:11 [14000] [3] DEBUG: Delayed reply - wait for bearerbox
2012-10-14 16:35:11 [14000] [0] DEBUG: Got ACK (0) of 3f2acc2f-e99c-4d5d-a038-630b25345b38 2012-10-14 16:35:11 [14000] [0] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 16:35:11 [14000] [3] INFO: smsbox: Got HTTP request </favicon.ico> from <127.0.0.1> 2012-10-14 16:35:11 [14000] [3] DEBUG: Status: 404 Answer: <Unknown request.> 2012-10-14 16:35:11 [14000] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 16:35:11 [14000] [3] INFO: smsbox: Got HTTP request </favicon.ico> from <127.0.0.1> 2012-10-14 16:35:11 [14000] [3] DEBUG: Status: 404 Answer: <Unknown request.> 2012-10-14 16:35:11 [14000] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'.
2012-10-14 16:36:11 [14000] [1] DEBUG: Timeout for fd:24 appears.
2012-10-14 16:36:11 [14000] [1] DEBUG: HTTP: Destroying HTTPClient area 0x7f4478000ad0. 2012-10-14 16:36:11 [14000] [1] DEBUG: HTTP: Destroying HTTPClient for `127.0.0.1'. 2012-10-14 16:46:04 [17290] [0] INFO: Added logfile `/root/kannel15/logs/smsbox.log' with level `0'.
2012-10-14 16:46:04 [17290] [0] INFO: Service global sender set as '57677'
2012-10-14 16:46:04 [17290] [0] INFO: Logging accesses to '/root/kannel15/logs/smsbox-access.log'. 2012-10-14 16:46:04 [17290] [0] INFO: Started access logfile `/root/kannel15/logs/smsbox-access.log'.
2012-10-14 16:46:04 [17290] [0] INFO: HTTP: Opening server at port 13188.
2012-10-14 16:46:04 [17290] [0] DEBUG: Started thread 1 (gwlib/fdset.c:poller) 2012-10-14 16:46:04 [17290] [1] DEBUG: Thread 1 (gwlib/fdset.c:poller) maps to pid 17290. 2012-10-14 16:46:04 [17290] [0] DEBUG: Started thread 2 (gwlib/http.c:server_thread)
2012-10-14 16:46:04 [17290] [0] INFO: Set up send sms service at port 13188
2012-10-14 16:46:04 [17290] [0] DEBUG: Started thread 3 (gw/smsbox.c:sendsms_thread) 2012-10-14 16:46:04 [17290] [0] DEBUG: ---------------------------------------------- 2012-10-14 16:46:04 [17290] [0] DEBUG: Kannel smsbox version svn-r5004 starting 2012-10-14 16:46:04 [17290] [2] DEBUG: Thread 2 (gwlib/http.c:server_thread) maps to pid 17290. 2012-10-14 16:46:04 [17290] [2] DEBUG: HTTP: Including port 13188, fd 10 for polling in server thread 2012-10-14 16:46:04 [17290] [3] DEBUG: Thread 3 (gw/smsbox.c:sendsms_thread) maps to pid 17290.
2012-10-14 16:46:04 [17290] [0] DEBUG:   dumping group (sendsms-user):
2012-10-14 16:46:04 [17290] [0] DEBUG:     <group> = <sendsms-user>
2012-10-14 16:46:04 [17290] [0] DEBUG:     <password> = <X>
2012-10-14 16:46:04 [17290] [0] DEBUG:     <username> = <Y>
2012-10-14 16:46:04 [17290] [0] DEBUG:   dumping group (sendsms-user):
2012-10-14 16:46:04 [17290] [0] DEBUG:     <group> = <sendsms-user>
2012-10-14 16:46:04 [17290] [0] DEBUG:     <user-deny-ip> = <*.*.*.*>
2012-10-14 16:46:04 [17290] [0] DEBUG:     <password> = <rL4y>
2012-10-14 16:46:04 [17290] [0] DEBUG:     <username> = <kannel>
2012-10-14 16:46:04 [17290] [0] DEBUG:     <user-allow-ip> = <127.0.0.1>
2012-10-14 16:46:04 [17290] [0] DEBUG: Started thread 4 (gw/smsbox.c:obey_request_thread) 2012-10-14 16:46:04 [17290] [0] DEBUG: Started thread 5 (gw/smsbox.c:url_result_thread) 2012-10-14 16:46:04 [17290] [0] DEBUG: Started thread 6 (gw/smsbox.c:http_queue_thread) 2012-10-14 16:46:04 [17290] [4] DEBUG: Thread 4 (gw/smsbox.c:obey_request_thread) maps to pid 17290.
2012-10-14 16:46:04 [17290] [0] DEBUG: Connecting to <127.0.0.1>
2012-10-14 16:46:04 [17290] [5] DEBUG: Thread 5 (gw/smsbox.c:url_result_thread) maps to pid 17290. 2012-10-14 16:46:04 [17290] [6] DEBUG: Thread 6 (gw/smsbox.c:http_queue_thread) maps to pid 17290. 2012-10-14 16:46:04 [17290] [0] INFO: Connected to bearerbox at localhost port 13187. 2012-10-14 16:46:04 [17290] [0] DEBUG: Started thread 7 (gw/heartbeat.c:heartbeat_thread) 2012-10-14 16:46:04 [17290] [7] DEBUG: Thread 7 (gw/heartbeat.c:heartbeat_thread) maps to pid 17290. 2012-10-14 16:48:35 [17290] [2] DEBUG: HTTP: Creating HTTPClient for `127.0.0.1'. 2012-10-14 16:48:35 [17290] [2] DEBUG: HTTP: Created HTTPClient area 0x7fbc8c000ad0. 2012-10-14 16:48:35 [17290] [2] DEBUG: HTTP: Creating HTTPClient for `127.0.0.1'. 2012-10-14 16:48:35 [17290] [2] DEBUG: HTTP: Created HTTPClient area 0x7fbc8c000d10. 2012-10-14 16:48:35 [17290] [3] INFO: smsbox: Got HTTP request </cgi-bin/sendsms> from <127.0.0.1>
2012-10-14 16:48:35 [17290] [3] INFO: sendsms used by <astroApp88>
2012-10-14 16:48:35 [17290] [3] INFO: sendsms sender:<astroApp88:57677> (127.0.0.1) to:<919869136505> msg:<ChargingT> 2012-10-14 16:48:35 [17290] [3] DEBUG: Stored UUID c6723721-f001-4d09-a474-369c477555ca
2012-10-14 16:48:35 [17290] [3] DEBUG: message length 9, sending 1 messages
2012-10-14 16:48:35 [17290] [3] DEBUG: Status: 202 Answer: <Sent.>
2012-10-14 16:48:35 [17290] [3] DEBUG: Delayed reply - wait for bearerbox
2012-10-14 16:48:35 [17290] [0] DEBUG: Got ACK (0) of c6723721-f001-4d09-a474-369c477555ca 2012-10-14 16:48:35 [17290] [0] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 16:48:35 [17290] [3] INFO: smsbox: Got HTTP request </favicon.ico> from <127.0.0.1> 2012-10-14 16:48:35 [17290] [3] DEBUG: Status: 404 Answer: <Unknown request.> 2012-10-14 16:48:35 [17290] [3] DEBUG: HTTP: Resetting HTTPClient for `127.0.0.1'. 2012-10-14 16:48:49 [17290] [1] DEBUG: HTTP: Destroying HTTPClient area 0x7fbc8c000d10. 2012-10-14 16:48:49 [17290] [1] DEBUG: HTTP: Destroying HTTPClient for `127.0.0.1'.
2012-10-14 16:49:49 [17290] [1] DEBUG: Timeout for fd:24 appears.
2012-10-14 16:49:49 [17290] [1] DEBUG: HTTP: Destroying HTTPClient area 0x7fbc8c000ad0. 2012-10-14 16:49:49 [17290] [1] DEBUG: HTTP: Destroying HTTPClient for `127.0.0.1'.



Please advise.

Thanks





--
Satyadeep Kumar

[email protected]
+91 971 147 5156


Reply via email to