This file is indexed.

/usr/share/syncevolution/xml/datatypes/server/42email-type-zipped.xml is in syncevolution-common 1.4-1ubuntu4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
    <!-- Note: This is a proprietary extension datatype for Synthesis AG Windows Mobile SyncML clients.
         This format is a compressed form of the standard RFC2822 format. For one, the entire data
         is compressed using the zip algorithm (<zippedbindata>), and secondly attachments are included
         in binary form in the RFC2822 data stream rather than bandwidth wasting B64, adding a
         "Content-Length:" header for each MIME part (<binaryparts>). -->

    <datatype name="email_zipbin" basetype="text">
      <use profile="rfc2822_email"/>
      <typestring>application/x-zip-message</typestring> <!-- our own private zipped binary optimized format -->
      <versionstring>1.1</versionstring>
      <binaryparts>yes</binaryparts>
      <zippedbindata>yes</zippedbindata>
      <zipcompressionlevel>9</zipcompressionlevel> <!-- -1=default, 0=no compression, 1=fast & least effective ... 9=slow and most effective -->

      <initscript><![CDATA[
        $EMAIL_INIT_SCRIPT
      ]]></initscript>

      <processitemscript><![CDATA[
        $EMAIL_PROCESSITEM_SCRIPT
      ]]></processitemscript>


      <mergescript><![CDATA[
        $EMAIL_MERGE_SCRIPT
      ]]></mergescript>


      <outgoingscript><![CDATA[
        $EMAIL_OUTGOING_SCRIPT
      ]]></outgoingscript>

      <filterinitscript><![CDATA[
        $EMAIL_FILTERINIT_SCRIPT
      ]]></filterinitscript>


      <filterscript><![CDATA[
        $EMAIL_FILTER_SCRIPT
      ]]></filterscript>

    </datatype>