Hi Ivars, The message means (as you suggest) that a DLR was received by Kannel but it couldn't match it to the original message. So effectively Kannel has no way of knowing what message the receipts is for.
The format of the DLR receipts does vary across SMSC so your experience is not all that uncommon. Better yet it has been built into Kannel - there is a smsc group config variable called msg-id-type which is described in docs (see exert below). These docs are pretty good especially when review with a copy of the SMPP specs in front of you. Experiment with this setting and let us know how you get on. If you have no luck I would suggest you supply some logs - level 0. Cheers, Alan http://www.kannel.org/download/kannel-userguide-snapshot/userguide.html#AEN1525 msg-id-type - number Optional, specifies which number base the SMSC is using for the message ID numbers in the corresponding submit_sm_resp and deliver_sm PDUs. This is required to make delivery reports (DLR) work on SMSC that behave differently. The number is a combined set of bit 1 and bit 2 that indicate as follows: bit 1: type for submit_sm_resp, bit 2: type for deliver_sm. If the bit is set then the value is in hex otherwise in decimal number base. Which means the following combinations are possible and valid: 0x00 deliver_sm decimal, submit_sm_resp decimal; 0x01 deliver_sm decimal, submit_sm_resp hex; 0x02 deliver_sm hex, submit_sm_resp decimal; 0x03 deliver_sm hex, submit_sm_resp hex. In accordance to the SMPP v3.4 specs the default will be a C string literal if no of the above values is explicitly indicated using the config directive. On Tue, 2004-02-03 at 07:44, Ivars Jukams wrote: > Can anybody explain what does it mean: > > ERROR: SMPP[lmt3]: got DLR but could not find message or was not > interested in it > > Why I receive this text in bearerbox log, when I send a sms via > .../cgi-bin/sendsms? > > I receive my message, so I think maybe it is some kind of delivery > status report from operator, wich kannel does not handles.