This file is indexed.

/usr/share/syncevolution/xml/scripting/08vcard-email-type.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
    <macro name="VCARD_OUTGOING_EMAILTYPE_SCRIPT"><![CDATA[
        if (SESSIONVAR("addInternetEmail")) {
            INTEGER i;
            i = 0;
            while (i < SIZE(EMAIL)) {
                if (EMAIL[i]) {
                    EMAIL_FLAGS[i] = EMAIL_FLAGS[i] | 8; // INTERNET = B3 in vCard profile
                }
                i = i + 1;
            }
        }
    ]]></macro>