This file is indexed.

/usr/share/GNUstep/SOGo/Templates/UIxToolbar.wox is in sogo-common 2.1.1b-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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" standalone="yes"?>
  <var:if condition="hasButtons"
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:var="http://www.skyrix.com/od/binding"
    xmlns:const="http://www.skyrix.com/od/constant"
    xmlns:rsrc="OGo:url"
    xmlns:label="OGo:label"
    xmlns:so="http://www.skyrix.com/od/so-lookup">
    <div id="toolbar" class="toolbar">
      <var:foreach list="toolbarConfig" item="toolbarGroup"
        ><var:foreach list="toolbarGroup" item="buttonInfo"
          ><var:if condition="isButtonEnabled"
            ><a var:class="cssClasses"
              var:href="buttonInfo.link"
              var:target="buttonInfo.target"
              var:onclick="buttonInfo.onclick"
              var:title="buttonTooltip"
              ><span><img class="buttonImage"
                  var:src="buttonImage"
                  var:alt="buttonTooltip"
                  /><var:if condition="hasMenu"
                  ><img class="buttonMenuArrow"
                    rsrc:src="arrow-dwn-sharp.gif"
                    var:alt="buttonTooltip"
                    /></var:if
                  ><br/><var:string value="buttonLabel"
                    /></span>
            </a></var:if
            ><var:if condition="isButtonEnabled"
            const:negate="YES"
            ><span var:class="cssClasses"
              ><img class="buttonImage"
                var:src="buttonImage"
                var:alt="buttonTooltip"
                /><br
                /><span class="buttonLabel"
                ><var:string
                  value="buttonLabel"
                  /></span
                ></span
              ></var:if
            ></var:foreach>
        <var:if condition="isLastGroup" const:negate="YES"
          ><span class="toolbarSeparator"
            ><var:entity const:name="nbsp"
              /></span
            ></var:if>
        </var:foreach>
	<img id="progressIndicator" rsrc:src="busy.gif" />
    </div>
  </var:if>