Re: [PATC] Fix to remove extra ü-characters f rom concatenated incoming message

Matti Ärmänen <[email protected]>
Newsgroups gmane.comp.mobile.kannel.devel
Message-ID <[email protected]>
Hi,
here is a patch to fix the problem hopefully in the right place. The 
len-parameter points to one byte too far, so obsolete data is taken into 
the decode result. Attached is the patch related to the current 
cvs-version of smsc_at.c v. 1.52

Attached are logs with (debug_fixed.log) and without the patch 
(debug_bug.log).

We have used this successfully in production environment for some weeks.

Regards,
Matti

Matti Ärmänen wrote:
> Hi,
> I have analyzed this further and the problem seems to be in the 
> PDU-decoding of the smsc_at-module. In case of concatenated SMS:es it 
> leaves extra data at the end of the message. I think smsc_at is the 
> right place to fix it, so the patch is obsolete. This is in the latest 
> CVS-version and .
>
> I investigate this further. The extra data at the end of last message 
> part varies, but at the end of other parts it is ü-character (0xC3 0xBC).
>
> Regards, Matti
>
> Alexander Malysh wrote:
>> Hi,
>>
>> I don't see a reason for your patch. This seems to be some workaround 
>> for a broken SMSC or SMSC module. Please provide us with more details:
>> 1) which smsc module are you using?
>> 2) the full debug log of at least one concatenated message with all 
>> parts
>> 3) what kannel version are you using?
>>
>> Thanks,
>> Alex
>>
>> Matti Ärmänen schrieb:
>>> Hello,
>>> in the cvs version there is the new functionality to concatenate the 
>>> incoming MO-messages. Without this patch there is ü-character (0xc3 
>>> 0xbc) at the end of each part or some other character at the end of 
>>> the last part of the message. The attached patch removes these extra 
>>> characters so that the resulted message is the same as the 
>>> originally sent message.
>>>
>>> The reference file is bb_smscconn.c version 1.98
>>>
>>> Regards,
>>> Matti Ärmänen
>>>
>>>
>>>
>>
>>
>>
>
>
>
smsc_at_concat.patch (text/plain, 551 B)
Index: smsc_at.c
===================================================================
RCS file: /home/cvs/gateway/gw/smsc/smsc_at.c,v
retrieving revision 1.52
diff -u -r1.52 smsc_at.c
--- smsc_at.c	8 Jan 2009 15:46:23 -0000	1.52
+++ smsc_at.c	9 Jan 2009 09:18:07 -0000
@@ -1936,6 +1936,7 @@
             nbits = (udhlen + 1) * 8;
             /* fill bits for UDH to septet boundary */
             offset = (((nbits / 7) + 1) * 7 - nbits) % 7;     
+            len--;
         }
         at2_decode7bituncompressed(tmpstr, len, text, offset);
     }
debug_bug.log (text/plain, 27 KB)
2009-01-09 11:49:40 [16836] [6] DEBUG: AT2[test]: <-- +CMTI: "ME",1
2009-01-09 11:49:40 [16836] [6] DEBUG: AT2[test]: +CMTI incoming SMS indication: +CMTI: "ME",1
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: --> AT+CPMS="ME"^M
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: <-- +CPMS: 1,40,0,30,1,40
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: --> AT+CMGR=1^M
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: <-- +CMGR: 0,,160
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: <-- 0791534850020200440D91534875370092F7390090109011943380A00500030103018CF2775B076A86E9F434682B6FEFDD65B742412DCFE930454C36A3D56C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD7039584C36A3D56C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD7039584C36A3D56C375C0E1693CD6835DB0D97832962B219AD66BBE172B0986C46ABD96EB81C2C269BD16A
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: received message from SMSC: +358405202000
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: Numeric sender (international) <+3584577300297>
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: User data length read as (160)
2009-01-09 11:49:42 [16836] [6] DEBUG: AT2[test]: Udh decoding done len=154 udhi=1 udhlen=5 udh=''
2009-01-09 11:49:43 [16836] [6] DEBUG: Got part 1 [ref 1, total parts 3] of message from +3584577300297. Dump follows:
2009-01-09 11:49:43 [16836] [6] DEBUG: Msg object at 0x8c51810:
2009-01-09 11:49:43 [16836] [6] DEBUG:  type: sms
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.sender:
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string at 0x8c516e8:
2009-01-09 11:49:43 [16836] [6] DEBUG:    len:  14
2009-01-09 11:49:43 [16836] [6] DEBUG:    size: 15
2009-01-09 11:49:43 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 37         +3584577300297
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.receiver:
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string at 0x8c518f0:
2009-01-09 11:49:43 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:43 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:43 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.udhdata:
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string at 0x8c51718:
2009-01-09 11:49:43 [16836] [6] DEBUG:    len:  6
2009-01-09 11:49:43 [16836] [6] DEBUG:    size: 7
2009-01-09 11:49:43 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 05 00 03 01 03 01                                 ......
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.msgdata:
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string at 0x8c51f18:
2009-01-09 11:49:43 [16836] [6] DEBUG:    len:  157
2009-01-09 11:49:43 [16836] [6] DEBUG:    size: 158
2009-01-09 11:49:43 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 46 72 6f 6d 3a 20 4d 61 74 74 69 20 c3 84 72 6d   From: Matti ..rm
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: c3 a4 6e 65 6e 0a 0a 54 65 73 74 30 0a 31 32 33   ..nen..Test0.123
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35   0123456789012345
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37   2345678901234567
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 30 0a 31 32 33 34 35 36 37 38 39 30 31 32 33 34   0.12345678901234
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 c3 bc            56789012345..
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.time: 1231494573
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string at 0x8c2b758:
2009-01-09 11:49:43 [16836] [6] DEBUG:    len:  4
2009-01-09 11:49:43 [16836] [6] DEBUG:    size: 5
2009-01-09 11:49:43 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string at 0x8c2b780:
2009-01-09 11:49:43 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:43 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:43 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:49:43 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.service:
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.account:
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.id: fcdc634e-83f6-4715-81a7-43fd39f5ccd6
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.coding: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.compress: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.validity: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.pid: 57
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.charset:
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.binfo:
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.priority: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:49:43 [16836] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:49:43 [16836] [6] DEBUG: Msg object ends.
2009-01-09 11:49:43 [16836] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:49:43 [16836] [6] DEBUG: AT2[test]: --> AT+CMGD=1^M
2009-01-09 11:49:43 [16836] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:49:43 [16836] [6] DEBUG: AT2[test]: --> AT+CPMS="SM"^M
2009-01-09 11:49:43 [16836] [6] DEBUG: AT2[test]: <-- +CPMS: 0,30,0,30,0,40
2009-01-09 11:49:43 [16836] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:49:47 [16836] [6] DEBUG: AT2[test]: <-- +CMTI: "ME",1
2009-01-09 11:49:47 [16836] [6] DEBUG: AT2[test]: +CMTI incoming SMS indication: +CMTI: "ME",1
2009-01-09 11:49:49 [16836] [6] DEBUG: AT2[test]: --> AT+CPMS="ME"^M
2009-01-09 11:49:49 [16836] [6] DEBUG: AT2[test]: <-- +CPMS: 1,40,0,30,1,40
2009-01-09 11:49:49 [16836] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:49:49 [16836] [6] DEBUG: AT2[test]: --> AT+CMGR=1^M
2009-01-09 11:49:49 [16836] [6] DEBUG: AT2[test]: <-- +CMTI: "ME",2
2009-01-09 11:49:49 [16836] [6] DEBUG: AT2[test]: +CMTI incoming SMS indication: +CMTI: "ME",2
2009-01-09 11:49:49 [16836] [6] DEBUG: AT2[test]: <-- +CMGR: 0,,160
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: <-- 0791534850020200400D91534875370092F7390090109011944380A00500030103026C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD7039584C36A3D56C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD70399822269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96EB81C2C269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96E
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: received message from SMSC: +358405202000
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: Numeric sender (international) <+3584577300297>
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: User data length read as (160)
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: Udh decoding done len=154 udhi=1 udhlen=5 udh=''
2009-01-09 11:49:50 [16836] [6] DEBUG: Got part 2 [ref 1, total parts 3] of message from +3584577300297. Dump follows:
2009-01-09 11:49:50 [16836] [6] DEBUG: Msg object at 0x8c2bca0:
2009-01-09 11:49:50 [16836] [6] DEBUG:  type: sms
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.sender:
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string at 0x8c50bc8:
2009-01-09 11:49:50 [16836] [6] DEBUG:    len:  14
2009-01-09 11:49:50 [16836] [6] DEBUG:    size: 15
2009-01-09 11:49:50 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 37         +3584577300297
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.receiver:
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string at 0x8c2bd80:
2009-01-09 11:49:50 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:50 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:50 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.udhdata:
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string at 0x8c2bdb0:
2009-01-09 11:49:50 [16836] [6] DEBUG:    len:  6
2009-01-09 11:49:50 [16836] [6] DEBUG:    size: 7
2009-01-09 11:49:50 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 05 00 03 01 03 02                                 ......
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.msgdata:
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string at 0x8c2bdd8:
2009-01-09 11:49:50 [16836] [6] DEBUG:    len:  155
2009-01-09 11:49:50 [16836] [6] DEBUG:    size: 156
2009-01-09 11:49:50 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37   2345678901234567
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 0a 31 32 33 34   01234567890.1234
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38   3456789012345678
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 c3 bc                  901234567..
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.time: 1231494574
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string at 0x8c2be90:
2009-01-09 11:49:50 [16836] [6] DEBUG:    len:  4
2009-01-09 11:49:50 [16836] [6] DEBUG:    size: 5
2009-01-09 11:49:50 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string at 0x8c50be0:
2009-01-09 11:49:50 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:50 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:50 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:49:50 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.service:
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.account:
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.id: 591b49ae-6c74-4e10-aea5-e627a77027c1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.coding: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.compress: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.validity: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.pid: 57
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.charset:
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.binfo:
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.priority: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:49:50 [16836] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:49:50 [16836] [6] DEBUG: Msg object ends.
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: --> AT+CMGD=1^M
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: --> AT+CMGR=2^M
2009-01-09 11:49:50 [16836] [6] DEBUG: AT2[test]: <-- +CMGR: 0,,135
2009-01-09 11:49:51 [16836] [6] DEBUG: AT2[test]: <-- 0791534850020200440D91534875370092F7390090109011945380830500030103037039584C36A3D56C375C0E1693CD6835DB0D97832962B219AD66BBE172B0986C46ABD96EB81C2C269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96EB81C2C269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96EB81C0C
2009-01-09 11:49:51 [16836] [6] DEBUG: AT2[test]: received message from SMSC: +358405202000
2009-01-09 11:49:51 [16836] [6] DEBUG: AT2[test]: Numeric sender (international) <+3584577300297>
2009-01-09 11:49:51 [16836] [6] DEBUG: AT2[test]: User data length read as (131)
2009-01-09 11:49:51 [16836] [6] DEBUG: AT2[test]: Udh decoding done len=125 udhi=1 udhlen=5 udh=''
2009-01-09 11:49:51 [16836] [6] DEBUG: Got part 3 [ref 1, total parts 3] of message from +3584577300297. Dump follows:
2009-01-09 11:49:51 [16836] [6] DEBUG: Msg object at 0x8c29d30:
2009-01-09 11:49:51 [16836] [6] DEBUG:  type: sms
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.sender:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c4fc90:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  14
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 15
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 37         +3584577300297
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.receiver:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c29e10:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.udhdata:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c29e40:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  6
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 7
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 05 00 03 01 03 03                                 ......
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.msgdata:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c29e68:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  125
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 126
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 34 35 36 37 38 39 30 0a 31 32 33 34 35 36 37 38   4567890.12345678
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34   9012345678901234
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38   3456789012345678
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30 70            901234567890p
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.time: 1231494575
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c29f08:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  4
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 5
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c29f30:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.service:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.account:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.id: e9735ce3-18b2-47db-932c-cdf2414608a9
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.coding: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.compress: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.validity: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.pid: 57
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.charset:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.binfo:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.priority: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:49:51 [16836] [6] DEBUG: Msg object ends.
2009-01-09 11:49:51 [16836] [6] DEBUG: Received all concatenated message parts from +3584577300297, to +358442929225, refnum 1
2009-01-09 11:49:51 [16836] [6] DEBUG: Got full message [ref 1] of message from +3584577300297 to +358442929225. Dumping: 
2009-01-09 11:49:51 [16836] [6] DEBUG: Msg object at 0x8c29f90:
2009-01-09 11:49:51 [16836] [6] DEBUG:  type: sms
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.sender:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c29f60:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  14
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 15
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 37         +3584577300297
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.receiver:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c2a058:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.udhdata:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c2a088:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  0
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 7
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.msgdata:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c2a0b0:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  437
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 1024
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 46 72 6f 6d 3a 20 4d 61 74 74 69 20 c3 84 72 6d   From: Matti ..rm
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: c3 a4 6e 65 6e 0a 0a 54 65 73 74 30 0a 31 32 33   ..nen..Test0.123
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35   0123456789012345
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37   2345678901234567
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 30 0a 31 32 33 34 35 36 37 38 39 30 31 32 33 34   0.12345678901234
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 c3 bc 36 37 38   56789012345..678
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34   9012345678901234
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 0a 31 32 33 34 35 36 37   34567890.1234567
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35   0123456789012345
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 32 33 34 35 36 37 c3 bc 38 39 30 31 32 33 34 35   234567..89012345
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 0a   678901234567890.
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38   3456789012345678
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34   9012345678901234
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 37 38 39 30 70                                    7890p
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.time: 1231494573
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c2a170:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  4
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 5
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string at 0x8c2a198:
2009-01-09 11:49:51 [16836] [6] DEBUG:    len:  13
2009-01-09 11:49:51 [16836] [6] DEBUG:    size: 14
2009-01-09 11:49:51 [16836] [6] DEBUG:    immutable: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:49:51 [16836] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.service:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.account:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.id: 0bf9c18a-63af-4b42-bd23-f289b97d2da7
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.coding: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.compress: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.validity: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.pid: 57
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.charset:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.binfo:
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.priority: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:49:51 [16836] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:49:51 [16836] [6] DEBUG: Msg object ends.
2009-01-09 11:49:51 [16836] [10] DEBUG: send_msg: sending msg to box: <127.0.0.1>
2009-01-09 11:49:51 [16836] [10] DEBUG: boxc_sender: sent message to <127.0.0.1>
debug_fixed.log (text/plain, 27 KB)
2009-01-09 11:06:28 [14770] [6] DEBUG: AT2[test]: <-- +CMTI: "ME",1
2009-01-09 11:06:28 [14770] [6] DEBUG: AT2[test]: +CMTI incoming SMS indication: +CMTI: "ME",1
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: --> AT+CPMS="ME"^M
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: <-- +CPMS: 1,40,0,30,1,40
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: --> AT+CMGR=1^M
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: <-- +CMGR: 0,,160
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: <-- 0791534850020200400D91534875370092F1390090109011603280A00500030003018CF2775B076A86E9F434682B6FEFDD65B742412DCFE931454C36A3D56C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD7039584C36A3D56C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD7039584C36A3D56C375C0E1693CD6835DB0D97832962B219AD66BBE172B0986C46ABD96EB81C2C269BD16A
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: received message from SMSC: +358405202000
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: Numeric sender (international) <+3584577300291>
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: User data length read as (160)
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: Udh decoding done len=154 udhi=1 udhlen=5 udh=''
2009-01-09 11:06:30 [14770] [6] DEBUG: Got part 1 [ref 0, total parts 3] of message from +3584577300291. Dump follows:
2009-01-09 11:06:30 [14770] [6] DEBUG: Msg object at 0x9fe6120:
2009-01-09 11:06:30 [14770] [6] DEBUG:  type: sms
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.sender:
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string at 0x9fe5fd0:
2009-01-09 11:06:30 [14770] [6] DEBUG:    len:  14
2009-01-09 11:06:30 [14770] [6] DEBUG:    size: 15
2009-01-09 11:06:30 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 31         +3584577300291
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.receiver:
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string at 0x9fe6200:
2009-01-09 11:06:30 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:30 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:30 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.udhdata:
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string at 0x9fe6230:
2009-01-09 11:06:30 [14770] [6] DEBUG:    len:  6
2009-01-09 11:06:30 [14770] [6] DEBUG:    size: 7
2009-01-09 11:06:30 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 05 00 03 00 03 01                                 ......
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.msgdata:
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string at 0x9fe5fe8:
2009-01-09 11:06:30 [14770] [6] DEBUG:    len:  155
2009-01-09 11:06:30 [14770] [6] DEBUG:    size: 156
2009-01-09 11:06:30 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 46 72 6f 6d 3a 20 4d 61 74 74 69 20 c3 84 72 6d   From: Matti ..rm
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: c3 a4 6e 65 6e 0a 0a 54 65 73 74 31 0a 31 32 33   ..nen..Test1.123
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35   0123456789012345
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37   2345678901234567
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 30 0a 31 32 33 34 35 36 37 38 39 30 31 32 33 34   0.12345678901234
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35                  56789012345
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.time: 1231491983
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string at 0x9fe6000:
2009-01-09 11:06:30 [14770] [6] DEBUG:    len:  4
2009-01-09 11:06:30 [14770] [6] DEBUG:    size: 5
2009-01-09 11:06:30 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string at 0x9fb3eb0:
2009-01-09 11:06:30 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:30 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:30 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:06:30 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.service:
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.account:
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.id: c9fddf73-bffe-4ee1-a3fd-1479cbdb467d
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.coding: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.compress: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.validity: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.pid: 57
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.charset:
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.binfo:
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.priority: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:06:30 [14770] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:06:30 [14770] [6] DEBUG: Msg object ends.
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:06:30 [14770] [6] DEBUG: AT2[test]: --> AT+CMGD=1^M
2009-01-09 11:06:31 [14770] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:06:31 [14770] [6] DEBUG: AT2[test]: --> AT+CPMS="SM"^M
2009-01-09 11:06:31 [14770] [6] DEBUG: AT2[test]: <-- +CPMS: 0,30,0,30,0,40
2009-01-09 11:06:31 [14770] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:06:31 [14770] [6] DEBUG: AT2[test]: <-- +CMTI: "ME",1
2009-01-09 11:06:31 [14770] [6] DEBUG: AT2[test]: +CMTI incoming SMS indication: +CMTI: "ME",1
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: --> AT+CPMS="ME"^M
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: <-- +CPMS: 1,40,0,30,1,40
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: --> AT+CMGR=1^M
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: <-- +CMGR: 0,,160
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: <-- 0791534850020200400D91534875370092F1390090109011604280A00500030003026C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD7039584C36A3D56C375C0E1693CD6835DB0D9783C564335ACD76C3E56031D98C56B3DD70399822269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96EB81C2C269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96E
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: received message from SMSC: +358405202000
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: Numeric sender (international) <+3584577300291>
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: User data length read as (160)
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: Udh decoding done len=154 udhi=1 udhlen=5 udh=''
2009-01-09 11:06:33 [14770] [6] DEBUG: Got part 2 [ref 0, total parts 3] of message from +3584577300291. Dump follows:
2009-01-09 11:06:33 [14770] [6] DEBUG: Msg object at 0x9fb4450:
2009-01-09 11:06:33 [14770] [6] DEBUG:  type: sms
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.sender:
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string at 0x9fe6a20:
2009-01-09 11:06:33 [14770] [6] DEBUG:    len:  14
2009-01-09 11:06:33 [14770] [6] DEBUG:    size: 15
2009-01-09 11:06:33 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 31         +3584577300291
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.receiver:
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string at 0x9fb4530:
2009-01-09 11:06:33 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:33 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:33 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.udhdata:
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string at 0x9fb4560:
2009-01-09 11:06:33 [14770] [6] DEBUG:    len:  6
2009-01-09 11:06:33 [14770] [6] DEBUG:    size: 7
2009-01-09 11:06:33 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 05 00 03 00 03 02                                 ......
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.msgdata:
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string at 0x9fb4588:
2009-01-09 11:06:33 [14770] [6] DEBUG:    len:  153
2009-01-09 11:06:33 [14770] [6] DEBUG:    size: 154
2009-01-09 11:06:33 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37   2345678901234567
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 0a 31 32 33 34   01234567890.1234
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38   3456789012345678
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37                        901234567
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.time: 1231491984
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string at 0x9fc1b58:
2009-01-09 11:06:33 [14770] [6] DEBUG:    len:  4
2009-01-09 11:06:33 [14770] [6] DEBUG:    size: 5
2009-01-09 11:06:33 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string at 0x9fc1b80:
2009-01-09 11:06:33 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:33 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:33 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:06:33 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.service:
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.account:
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.id: e10ede61-bc06-4caf-a9f1-1e0fef75e110
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.coding: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.compress: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.validity: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.pid: 57
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.charset:
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.binfo:
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.priority: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:06:33 [14770] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:06:33 [14770] [6] DEBUG: Msg object ends.
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: <-- +CMTI: "ME",2
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: +CMTI incoming SMS indication: +CMTI: "ME",2
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:06:33 [14770] [6] DEBUG: AT2[test]: --> AT+CMGD=1^M
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: <-- OK
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: --> AT+CMGR=2^M
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: <-- +CMGR: 0,,135
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: <-- 0791534850020200440D91534875370092F1390090109011605280830500030003037039584C36A3D56C375C0E1693CD6835DB0D97832962B219AD66BBE172B0986C46ABD96EB81C2C269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96EB81C2C269BD16AB61B2E078BC966B49AED86CBC162B219AD66BBE172B0986C46ABD96EB81C0C
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: received message from SMSC: +358405202000
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: Numeric sender (international) <+3584577300291>
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: User data length read as (131)
2009-01-09 11:06:34 [14770] [6] DEBUG: AT2[test]: Udh decoding done len=125 udhi=1 udhlen=5 udh=''
2009-01-09 11:06:34 [14770] [6] DEBUG: Got part 3 [ref 0, total parts 3] of message from +3584577300291. Dump follows:
2009-01-09 11:06:34 [14770] [6] DEBUG: Msg object at 0x9fc16b0:
2009-01-09 11:06:34 [14770] [6] DEBUG:  type: sms
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.sender:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc1e28:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  14
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 15
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 31         +3584577300291
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.receiver:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc1790:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.udhdata:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc17c0:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  6
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 7
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 05 00 03 00 03 03                                 ......
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.msgdata:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc17e8:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  124
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 125
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 34 35 36 37 38 39 30 0a 31 32 33 34 35 36 37 38   4567890.12345678
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34   9012345678901234
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38   3456789012345678
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30               901234567890
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.time: 1231491985
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc1888:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  4
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 5
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc18b0:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.service:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.account:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.id: 1c29a6d3-2c23-4238-b4c6-32a99c6b4cf2
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.coding: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.compress: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.validity: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.pid: 57
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.charset:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.binfo:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.priority: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:06:34 [14770] [6] DEBUG: Msg object ends.
2009-01-09 11:06:34 [14770] [6] DEBUG: Received all concatenated message parts from +3584577300291, to +358442929225, refnum 0
2009-01-09 11:06:34 [14770] [6] DEBUG: Got full message [ref 0] of message from +3584577300291 to +358442929225. Dumping: 
2009-01-09 11:06:34 [14770] [6] DEBUG: Msg object at 0x9fc1910:
2009-01-09 11:06:34 [14770] [6] DEBUG:  type: sms
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.sender:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc18e0:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  14
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 15
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 2b 33 35 38 34 35 37 37 33 30 30 32 39 31         +3584577300291
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.receiver:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc19d8:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 2b 33 35 38 34 34 32 39 32 39 32 32 35            +358442929225
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.udhdata:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc1a08:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  0
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 7
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.msgdata:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fc1a30:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  432
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 1024
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 46 72 6f 6d 3a 20 4d 61 74 74 69 20 c3 84 72 6d   From: Matti ..rm
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: c3 a4 6e 65 6e 0a 0a 54 65 73 74 31 0a 31 32 33   ..nen..Test1.123
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35   0123456789012345
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37   2345678901234567
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 30 0a 31 32 33 34 35 36 37 38 39 30 31 32 33 34   0.12345678901234
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38   3456789012345678
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34   9012345678901234
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 35 36 37 38 39 30 0a 31 32 33 34 35 36 37 38 39   567890.123456789
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35   0123456789012345
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31   6789012345678901
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37   2345678901234567
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33   8901234567890123
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39   4567890123456789
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 30 31 32 33 34 35 36 37 38 39 30 0a 31 32 33 34   01234567890.1234
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36   1234567890123456
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32   7890123456789012
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38   3456789012345678
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34   9012345678901234
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30   5678901234567890
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.time: 1231491983
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.smsc_id:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fec1d0:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  4
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 5
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 74 65 73 74                                       test
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.smsc_number:
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string at 0x9fec1f8:
2009-01-09 11:06:34 [14770] [6] DEBUG:    len:  13
2009-01-09 11:06:34 [14770] [6] DEBUG:    size: 14
2009-01-09 11:06:34 [14770] [6] DEBUG:    immutable: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:    data: 2b 33 35 38 34 30 35 32 30 32 30 30 30            +358405202000
2009-01-09 11:06:34 [14770] [6] DEBUG:  Octet string dump ends.
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.service:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.account:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.id: 890b615b-ecd3-4360-a21c-ddd878edc515
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.sms_type: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.mclass: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.mwi: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.coding: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.compress: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.validity: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.deferred: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.dlr_mask: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.dlr_url:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.pid: 57
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.alt_dcs: 0
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.rpi: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.charset:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.boxc_id:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.binfo:
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.msg_left: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.split_parts: (nil)
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.priority: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.resend_try: -1
2009-01-09 11:06:34 [14770] [6] DEBUG:  sms.resend_time: -1
2009-01-09 11:06:34 [14770] [6] DEBUG: Msg object ends.
2009-01-09 11:06:34 [14770] [10] DEBUG: send_msg: sending msg to box: <127.0.0.1>
2009-01-09 11:06:34 [14770] [10] DEBUG: boxc_sender: sent message to <127.0.0.1>
2009-01-09 11:06:34 [14770] [9] DEBUG: boxc_receiver: got ack
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.