This file is indexed.

/usr/share/GNUstep/SOGo/Templates/UIxTopnavToolbar.wox is in sogo-common 3.2.6-2.

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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version='1.0' standalone='yes'?>
<container
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:var="http://www.skyrix.com/od/binding"
    xmlns:const="http://www.skyrix.com/od/constant"
    xmlns:label="OGo:label">

  <div class="md-toolbar-tools sg-toolbar-group-1" layout="row">
    <md-button ng-click="toggleLeft()"
               class="md-icon-button hide show-gt-md"
               label:aria-label="Toggle Menu"
               ng-switch="leftIsClose">
      <md-icon ng-switch-when="true">fullscreen_exit</md-icon>
      <md-icon ng-switch-when="false">fullscreen</md-icon>
    </md-button>
    <md-button ng-click="toggleLeft()"
               class="md-icon-button hide-gt-md"
               label:aria-label="Toggle Menu">
      <md-icon>menu</md-icon>
    </md-button>
    <div class="sg-date-group sg-padded hide show-gt-md" layout="column" layout-align="space-between end">
      <p class="sg-day" ng-bind="currentDay.weekday"><!-- weekday --></p>
      <p class="sg-month" ng-bind="currentDay.month"><!-- month --></p>
      <p class="sg-year" ng-bind="currentDay.year"><!-- year --></p>
    </div>
    <p class="sg-md-display-3 sg-date-today hide show-gt-md" ng-bind="currentDay.day"><!-- day --></p>
  </div>
  <div class="md-toolbar-tools sg-toolbar-group-last" layout="row" layout-align="end center">
    <md-button class="md-icon-button"
               ng-show="activeUser.path.calendar.length"
               ng-disabled="baseURL.endsWith('/Calendar/')"
               var:ng-click="navButtonClick"
               ng-href="{{activeUser.path.calendar}}">
      <md-tooltip><var:string label:value="Calendar"/></md-tooltip>
      <md-icon>event</md-icon>
    </md-button>
    <md-button class="md-icon-button"
               ng-disabled="baseURL.endsWith('/Contacts/')"
               var:ng-click="navButtonClick"
               ng-href="{{activeUser.path.contacts}}">
      <md-icon>contacts</md-icon>
      <md-tooltip><var:string label:value="Address Book"/></md-tooltip>
    </md-button>
    <md-button class="md-icon-button"
               ng-show="activeUser.path.mail.length"
               ng-disabled="baseURL.endsWith('/Mail/')"
               var:ng-click="navButtonClick"
               ng-href="{{activeUser.path.mail}}">
      <md-icon>email</md-icon>
      <var:if condition="userHasVacationEnabled">
        <md-icon class="md-default-theme md-warn md-bg sg-icon--badge" label:aria-label="Vacation message is enabled">forward</md-icon>
      </var:if>
      <md-tooltip><var:string label:value="Mail"/></md-tooltip>
    </md-button>
    <md-button class="md-icon-button"
               ng-disabled="baseURL.endsWith('/Administration/')"
               ng-show="activeUser.isSuperUser"
               var:ng-click="navButtonClick"
               ng-href="{{activeUser.path.administration}}">
      <md-icon>settings_applications</md-icon>
      <md-tooltip><var:string label:value="Administration"/></md-tooltip>
    </md-button>
    <div class="hide-xs" style="width: 40px"
         ng-show="activeUser.path.logoff.length"><!-- divider --></div>
    <md-button class="md-icon-button"
               ng-show="activeUser.path.help.length"
               ng-href="{{activeUser.path.help}}"
               target="_blank">
      <md-icon>help_outline</md-icon>
      <md-tooltip><var:string label:value="Help"/></md-tooltip>
    </md-button>
    <md-button class="md-icon-button"
               ng-show="activeUser.path.logoff.length"
               var:ng-click="navButtonClick"
               ng-href="{{activeUser.path.logoff}}">
      <md-icon>settings_power</md-icon>
      <md-tooltip><var:string label:value="Disconnect"/></md-tooltip>
    </md-button>
  </div>

</container>