1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright 2014 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<mms_config version="2"> 18 <!-- In case of single segment M-Notification.ind, this indicates whether 19 TransactionID should be appended to URI or not. --> 20 <bool name="enabledTransID">true</bool> 21 22 <!-- Send M-Acknowledge.ind and M-NotifyResp.ind to the URL received by the 23 M-Notification.ind (WAP-PUSH). --> 24 <bool name="enabledNotifyWapMMSC">true</bool> 25 26 <!-- Maximum message size in bytes for a MMS message --> 27 <int name="maxMessageSize">1258291</int> 28 29 <!-- UAProf parameter tag name --> 30 <string name="uaProfTagName">Profile</string> 31 32 <!-- Maximum number of recipients allowed per message. Use a value of -1 33 to indicate no limit. --> 34 <int name="recipientLimit">20</int> 35 36 <!-- Additional http parameters used in MMS http request. 37 Parameters are seperated by '|'. Optional. --> 38 <string name="httpParams">x-up-calling-line-id: 1##LINE1NOCOUNTRYCODE##|X-VzW-MDN: 1##LINE1NOCOUNTRYCODE##</string> 39 40 <!-- Maximum height for an attached image --> 41 <int name="maxImageHeight">1944</int> 42 43 <!-- Maximum width for an attached image --> 44 <int name="maxImageWidth">2592</int> 45 46 <!-- Email Gateway Number --> 47 <!-- TODO: check if this is correct for Passion --> 48 <string name="emailGatewayNumber">6245</string> 49 50 <!-- enable alias --> 51 <bool name="aliasEnabled">true</bool> 52 53 <!-- alias rule: min chars --> 54 <int name="aliasMinChars">2</int> 55 56 <!-- alias rule: max chars --> 57 <int name="aliasMaxChars">48</int> 58 59 <!-- disable the option to attach an audio attachment to an Mms message. Currently Verizon 60 doesn't support OGG files and the only audio picker in the system allowed for picking 61 ringtones. All of our ringtones are OGG files so it doesn't make sense to allow a user 62 to select an audio file that eventually can't be handled. Therefore, the ability 63 to select a ringtone to send is disabled. --> 64 <bool name="allowAttachAudio">false</bool> 65 66 <!-- Hide the MMS read reports UI in settings --> 67 <bool name="enableMMSReadReports">false</bool> 68 69 <!-- Maximum length in chars of mms subject field --> 70 <int name="maxSubjectLength">80</int> 71 72 <!-- If true, The text message over 160 characters will be sent in multi part. 73 If false, The text message over 160 characters will be sent 74 via multi media message. --> 75 <bool name="enableMultipartSMS">true</bool> 76 77 <!-- If enableMultipartSMS is true and smsToMmsTextThreshold > 1, then multi-part SMS messages 78 will be converted into a single mms message. For example, if the mms_config.xml file 79 specifies <int name="smsToMmsTextThreshold">7</int>, then on the 8th sms segment, the 80 message will be converted to an mms. --> 81 <int name="smsToMmsTextThreshold">7</int> 82</mms_config> 83 84