1<?xml version="1.0" encoding="utf-8"?> 2 3<!-- Version History 4 version 1 - initial version. 5 version 2 - added recipientLimit. 6 version 3 - added min/max recycler values. 7 version 4 - added sms to mms text threshold. 8--> 9 10<!-- Softbank J.P. mcc=440, mnc=020 --> 11 12<mms_config version="4"> 13 <!-- Flag indicating whether MMS should be enabled --> 14 <bool name="enabledMMS">true</bool> 15 16 <!-- Maximum message size in bytes for a MMS message --> 17 <int name="maxMessageSize">307200</int> 18 19 <!-- Maximum height for an attached image --> 20 <int name="maxImageHeight">1944</int> 21 22 <!-- Maximum width for an attached image --> 23 <int name="maxImageWidth">2592</int> 24 25 <!-- Maximum number of SMS message to save per thread before auto-delete kicks in. 26 This is the default value. --> 27 <int name="defaultSMSMessagesPerThread">10000</int> 28 29 <!-- Maximum number of MMS message to save per thread before auto-delete kicks in. 30 This is the default value. --> 31 <int name="defaultMMSMessagesPerThread">1000</int> 32 33 <!-- Minimum value for the number of messages kept per conversation. The user can never 34 set the limit below this value. --> 35 <int name="minMessageCountPerThread">10</int> 36 37 <!-- Maximum value for the number of messages kept per conversation. The user can never 38 set the limit above this value. --> 39 <int name="maxMessageCountPerThread">5000</int> 40 41 <!-- Maximum number of recipients allowed per message. Use a value of -1 42 to indicate no limit. --> 43 <int name="recipientLimit">-1</int> 44 45 <!-- If true, The mms support slide duration. 46 If false, The mms does not support slide duration and we have to 47 set duration value. --> 48 <bool name="enableSlideDuration">true</bool> 49 50 <!-- Maximum length for message text. Use a value of -1 51 to indicate default value --> 52 <int name="maxMessageTextSize">-1</int> 53 54 <!-- Set to true to add links to Cell Broadcast app from Settings and MMS app. --> 55 <bool name="config_cellBroadcastAppLinks">false</bool> 56</mms_config> 57