This file is indexed.

/usr/share/gosa/plugins/addons/goto/events/DaemonEvent_notify.tpl is in gosa-plugin-goto 2.7.4+reloaded2-1+deb8u2.

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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{if $is_new}

<table style='width:100%;' summary="{t}Goto daemon event: Notification message{/t}">
  <tr>
    <td style='width:50%; padding:6px;' class='right-border'>

	  <b>{t}Message settings{/t}</b>
      <table style="width:100%;" summary="{t}Subject{/t}">
        <tr>
          <td>{t}Sender{/t}</td>
          <td><input type='text' name="from" value="{$from}" style="width:100%;"></td>
        </tr>
        <tr>
          <td>{t}Subject{/t}</td>
          <td><input type='text' name="subject" value="{$subject}" style="width:100%;"></td>
        </tr>
        <tr>
          <td colspan="2">{t}Message{/t} :</td>
        </tr>
        <tr>
          <td colspan="2" >
            <textarea style="width:99%;height:250px;" name="message" >{$message}</textarea>
          </td>
        </tr>
      </table>
    </td>
    <td style='width:50%; '>

	    <b>{t}Schedule{/t}</b>
      <table summary="{t}Schedule options{/t}">
        <tr>
          <td colspan="2">{$timestamp}
<br><br></td>
        </tr>
	  </table>
      <table style='width:100%;' summary="{t}Recipient{/t}">
        <tr>
          <td style="width:50%;">
            <b>{t}Target users{/t}</b>
            <br>
			<select style="height:180px;width:100%" name="user[]"  multiple size=4>
				{html_options options=$user}
			</select>
          </td>
          <td>
            <b>{t}Target groups{/t}</b>
            <br>
			<select style="height:180px;width:100%" name="group[]"  multiple size=4>
				{html_options options=$group}
			</select>
          </td>
        </tr>
		<tr>
			<td colspan="2">
				<button type='submit' name='open_target_list'>{$add_str}</button>

				<button type='submit' name='del_any_target'>{$del_str}</button>

			</td>
		</tr>
      </table>
    </td>
  </tr>
</table>

{else}

<table style='width:100%;' summary="{t}Generic settings{/t}">
	<tr>
		<td>

			<table summary="{t}Generic settings{/t}">
				<tr>
					<td>{t}ID{/t}</td>
					<td>{$data.ID}</td>
				</tr>
				<tr>
					<td>{t}Status{/t}</td>
					<td>{$data.STATUS}</td>
				</tr>
				<tr>
					<td>{t}Result{/t}</td>
					<td>{$data.RESULT}</td>
				</tr>
				<tr>
					<td>{t}Target{/t}</td>
					<td>{$data.MACADDRESS}</td>
				</tr>
				<tr>
					<td>{t}Time stamp{/t}
</td>
					<td>{$timestamp}</td>
				</tr>
			</table>
		</td>
	</tr>
</table>

{/if}