This file is indexed.

/usr/share/zentyal/templates/users/del.mas is in zentyal-users 2.3.15+quantal1.

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
<!-- vim: ts=4 sw=4 nowrap filetype=mason
-->
<%args>
    $object
    $name
    @data
</%args>
<%init>
use EBox::Gettext;
</%init>

% if ($object eq 'user') {
<h3><% __('Deleting user') %> <span class="stitle"><% $name->name() %></span></h3>
<div class="warning">
<% __('The user you tried to delete contains data in the following modules. Please confirm you want to remove it and all its related data') %>
</div>
% } else {
<h3><% __('Deleting group') %> <span class="stitle"><% $name->name() %></span></h3>
<div class="warning">
<% __('The group you tried to delete contains data in the following modules. Please confirm you want to remove it and all its related data') %>
</div>
% }


% foreach my $par (@data) {
	<div class="warning">
		<% $par %>
	</div>
% }
<br/>

<form action='Del' method='POST'>
    <input type='hidden' name='object'
           value='<% $object %>'/>
    <input type='hidden' name='objectname'
           value='<% $name->dn() %>'/>
    <input class='inputButton'
% if ($object eq 'user') {
           type='submit' name='deluserforce'
% } else {
           type='submit' name='delgroupforce'
% }
           value="<% __('Delete') %>">
    <input class='inputButton'
           type='submit' name='cancel'
           value="<% __('Cancel') %>">
</form>