/usr/share/syncevolution/xml/scripting/06vcard-fullname.xml is in syncevolution-common 1.2.99.1-1.1.
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 | <macro name="VCARD_INCOMING_NAMECHANGE_SCRIPT"><![CDATA[
STRING tmp;
tmp=NORMALIZED(FN);
if (tmp==EMPTY){
tmp=N_FIRST;
if (N_MIDDLE != EMPTY) {
if (tmp != EMPTY) {
tmp = tmp + " ";
}
tmp = tmp + N_MIDDLE;
}
if (N_LAST != EMPTY) {
if (tmp != EMPTY) {
tmp = tmp + " ";
}
tmp = tmp + N_LAST;
}
FN = tmp;
}
]]></macro>
|