![]() |
2015-07-03
, 21:20
|
Posts: 638 |
Thanked: 1,692 times |
Joined on Aug 2009
|
#1002
|
The Following User Says Thank You to xes For This Useful Post: | ||
![]() |
2015-07-03
, 21:49
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#1003
|
Sorry, the exact error is "Failed to retrieve" and is inside the file "message" of mms folder.
The "headers" file contains:
MMS-Version 1.3
![]() |
2015-07-03
, 22:51
|
Posts: 638 |
Thanked: 1,692 times |
Joined on Aug 2009
|
#1004
|
The Following User Says Thank You to xes For This Useful Post: | ||
![]() |
2015-07-03
, 22:54
|
Posts: 75 |
Thanked: 269 times |
Joined on Aug 2012
|
#1005
|
okay
I think this could be the culprit.
fMMS was created using 1.0. I added one addigtonal header item of 1.2 spec to enable receiving here on my network in Germany.
Possibly there is now another header item used which is nit known to fMMS?
0x34 : 'X-Mms-Recommended-RetrievalMode' 0x35 : 'X-Mms-Recommended-RetrievalMode-Text' 0x36 : 'X-Mms-Status-Text' 0x37 : 'X-Mms-Applic-ID' 0x38 : 'X-Mms-Reply-Applic-ID' 0x39 : 'X-Mms-Aux-Applic-Info' 0x3A : 'X-Mms-Content-Class' 0x3B : 'X-Mms-DRM-Content' 0x3C : 'X-Mms-Adaptation-Allowed' 0x3D : 'X-Mms-Replace-ID' 0x3E : 'X-Mms-Cancel-ID' 0x3F : 'X-Mms-Cancel-Status'
0x1A : 'X-Mms-Retrieve-Text' 0x1B : 'X-Mms-Read-Status' 0x1C : 'X-Mms-Reply-Charging' 0x1D : 'X-Mms-Reply-Charging-Deadline' 0x1E : 'X-Mms-Reply-Charging-ID' 0x1F : 'X-Mms-Reply-Charging-Size' 0x20 : 'X-Mms-Previously-Sent-By' 0x21 : 'X-Mms-Previously-Sent-Date' 0x22 : 'X-Mms-Store' 0x23 : 'X-Mms-MM-State' 0x24 : 'X-Mms-MM-Flags' 0x25 : 'X-Mms-Store-Status' 0x26 : 'X-Mms-Store-Status-Text' 0x27 : 'X-Mms-Stored' 0x28 : 'X-Mms-Attributes' 0x29 : 'X-Mms-Totals' 0x2A : 'X-Mms-Mbox-Totals' 0x2B : 'X-Mms-Quotas' 0x2C : 'X-Mms-Mbox-Quotas' 0x2D : 'X-Mms-Message-Count' 0x2E : 'Content' 0x2F : 'X-Mms-Start' 0x30 : 'Additional-headers' 0x31 : 'X-Mms-Distribution-Indicator' 0x32 : 'X-Mms-Element-Descriptor' 0x33 : 'X-Mms-Limit' 0x34 : 'X-Mms-Recommended-RetrievalMode' 0x35 : 'X-Mms-Recommended-RetrievalMode-Text' 0x36 : 'X-Mms-Status-Text' 0x37 : 'X-Mms-Applic-ID' 0x38 : 'X-Mms-Reply-Applic-ID' 0x39 : 'X-Mms-Aux-Applic-Info' 0x3A : 'X-Mms-Content-Class' 0x3B : 'X-Mms-DRM-Content' 0x3C : 'X-Mms-Adaptation-Allowed' 0x3D : 'X-Mms-Replace-ID' 0x3E : 'X-Mms-Cancel-ID' 0x3F : 'X-Mms-Cancel-Status'
The Following 7 Users Say Thank You to Ilew For This Useful Post: | ||
![]() |
2015-07-04
, 19:13
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#1006
|
os.system("if [ ! -f /home/user/.fmms/mms/" + trans_id + "/message.bak ]; then cp /home/user/.fmms/mms/" + trans_id + "/message /home/user/.fmms/mms/" + trans_id + "/message.bak; fi") message = self.decode_binary_mms(path) os.system("if [ -f /home/user/.fmms/mms/" + trans_id + "/message.bak ]; then diff /home/user/.fmms/mms/" + trans_id + "/message /home/user/.fmms/mms/" + trans_id + "/message.bak; if [ \"$?\" == \"0\" ]; then rm /home/user/.fmms/mms/" + trans_id + "/message.bak; fi; fi")
os.system("if [ ! -f /home/user/.fmms/mms/" + trans_id + "/message.bak ]; then cp /home/user/.fmms/mms/" + trans_id + "/message /home/user/.fmms/mms/" + trans_id + "/message.bak; fi") message = self.decode_binary_mms(path) os.system("if [ -f /home/user/.fmms/mms/" + trans_id + "/message.bak ]; then diff /home/user/.fmms/mms/" + trans_id + "/message /home/user/.fmms/mms/" + trans_id + "/message.bak; if [ \"$?\" == \"0\" ]; then rm /home/user/.fmms/mms/" + trans_id + "/message.bak; fi; fi") log.info("storing mms...%s", trans_id) mmsid = self.store_mms_message(pushid, message)
os.system("if [ ! -f /home/user/.fmms/mms/" + trans_id + "/message.bak ]; then cp /home/user/.fmms/mms/" + trans_id + "/message /home/user/.fmms/mms/" + trans_id + "/message.bak; fi") message = self.decode_binary_mms(path) log.info("storing mms...%s", trans_id) mmsid = self.store_mms_message(pushid, message) os.system("if [ -f /home/user/.fmms/mms/" + trans_id + "/message.bak ]; then diff /home/user/.fmms/mms/" + trans_id + "/message /home/user/.fmms/mms/" + trans_id + "/message.bak; if [ \"$?\" == \"0\" ]; then rm /home/user/.fmms/mms/" + trans_id + "/message.bak; fi; fi")
![]() |
2015-07-04
, 21:00
|
Posts: 68 |
Thanked: 113 times |
Joined on Sep 2014
|
#1007
|
The Following 2 Users Say Thank You to Swordfish II For This Useful Post: | ||
![]() |
2015-07-05
, 21:56
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#1008
|
![]() |
2015-07-12
, 02:33
|
Posts: 68 |
Thanked: 113 times |
Joined on Sep 2014
|
#1009
|
![]() |
2015-07-12
, 14:05
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#1010
|
The Following User Says Thank You to peterleinchen For This Useful Post: | ||
![]() |
Tags |
bada rox, bada rulez, fmms, mms, mms config, n900, python |
Thread Tools | |
|
I grepped through the sources and did not find occurences of 'impossible to retrieve'!
Do you get this in fMMS GUI when touching that MMS?
Since when do you have this behaviour?
Do you have a file named 'headers' in that directory? What is the status of 'Retrieve-Status'?
I had that once (long before) that MMS was downloaded correctly but somehow not marked as downloaded (in mms.db). I guess it had to do with a wrong header decoding at the end (some ending char missing) so decoding took place but it was not entered into db as downloaded/received.
SIM-Switcher, automated SIM switching with a Double (Dual) SIM adapter
--
Thank you all for voting me into the Community Council 2014-2016!
Please consider your membership / supporting Maemo e.V. and help to spread this by following/copying this link to your TMO signature:
[MC eV] Maemo Community eV membership application, http://talk.maemo.org/showthread.php?t=94257
editsignature, http://talk.maemo.org/profile.php?do=editsignature