Home | History | Annotate | Download | only in xml-mcc311-mnc480
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <mms_config version="2">
      4     <!-- In case of single segment M-Notification.ind, this indicates whether
      5          TransactionID should be appended to URI or not. -->
      6     <!-- TODO: check if this is correct for Passion -->
      7     <bool name="enabledTransID">true</bool>
      8 
      9     <!-- Send M-Acknowledge.ind and M-NotifyResp.ind to the URL received by the
     10          M-Notification.ind (WAP-PUSH). -->
     11     <bool name="enabledNotifyWapMMSC">true</bool>
     12 
     13     <!-- Maximum message size in bytes for a MMS message -->
     14     <int name="maxMessageSize">1258291</int>
     15 
     16     <!-- UAProf parameter tag name -->
     17     <string name="uaProfTagName">Profile</string>
     18 
     19     <!-- Maximum number of recipients allowed per message. Use a value of -1
     20          to indicate no limit. -->
     21     <int name="recipientLimit">20</int>
     22 
     23     <!-- Additional http parameters used in MMS http request.
     24          Parameters are seperated by '|'. Optional. -->
     25     <string name="httpParams">x-up-calling-line-id: 1##LINE1NOCOUNTRYCODE##|X-VzW-MDN: 1##LINE1NOCOUNTRYCODE##</string>
     26 
     27     <!-- Maximum height for an attached image -->
     28     <int name="maxImageHeight">1944</int>
     29 
     30     <!-- Maximum width for an attached image -->
     31     <int name="maxImageWidth">2592</int>
     32 
     33     <!-- Email Gateway Number -->
     34     <!-- TODO: check if this is correct for Passion -->
     35     <string name="emailGatewayNumber">6245</string>
     36 
     37     <!-- enable alias -->
     38     <bool name="aliasEnabled">true</bool>
     39 
     40     <!-- alias rule: min chars -->
     41     <int name="aliasMinChars">2</int>
     42 
     43     <!-- alias rule: max chars -->
     44     <int name="aliasMaxChars">48</int>
     45 
     46     <!-- disable the option to attach an audio attachment to an Mms message. Currently Verizon
     47          doesn't support OGG files and the only audio picker in the system allowed for picking
     48          ringtones. All of our ringtones are OGG files so it doesn't make sense to allow a user
     49          to select an audio file that eventually can't be handled. Therefore, the ability
     50          to select a ringtone to send is disabled. -->
     51     <bool name="allowAttachAudio">false</bool>
     52 
     53     <!-- Hide the MMS read reports UI in settings -->
     54     <bool name="enableMMSReadReports">false</bool>
     55 
     56     <!-- Maximum length in chars of mms subject field -->
     57     <int name="maxSubjectLength">80</int>
     58 
     59     <!-- If true, The text message over 160 characters will be sent in multi part.
     60          If false, The text message over 160 characters will be sent
     61          via multi media message. -->
     62     <bool name="enableMultipartSMS">true</bool>
     63 
     64     <!-- If enableMultipartSMS is true and smsToMmsTextThreshold > 1, then multi-part SMS messages
     65          will be converted into a single mms message. For example, if the mms_config.xml file
     66          specifies <int name="smsToMmsTextThreshold">7</int>, then on the 8th sms segment, the
     67          message will be converted to an mms. -->
     68     <int name="smsToMmsTextThreshold">7</int>
     69 </mms_config>
     70 
     71