This file is indexed.

/usr/share/prayer/templates/old/attachments.t is in prayer-templates-src 1.3.5-dfsg1-4build1.

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
%# $Cambridge: hermes/src/prayer/templates/old/attachments.t,v 1.1 2008/09/16 10:52:48 dpc22 Exp $
%#
% CALL header
% CALL toolbar
% CALL status
% IFDEF $atts[0]
<h2 style="text-align: center">MIME Attachments</h2>
<table>
%   FOREACH $a @atts
<tr>
 <td align="right"><% $a->offset |h %>.</td>
 <td><% $a->name |h %> (<% $a->size |h %> bytes) of type <% $a->type |h %></td>
 <td><a href="<% detach/${a->offset} |s %>">Detach</a></td>
</tr>
%   ENDFOREACH
</table>
<hr />
% ENDIF
<h3>Attach file:</h3>
<form method="post" action="<% attachments |s %>"
 enctype="multipart/form-data">
<div>
 File <input type="file" name="file" size="40" />
 <input type="submit" value="Attach File" />
</div>
</form>
<form method="post" accept-charset="UTF-8"
 enctype="multipart/form-data" action="<% attachments/cancel |s %>">
<div>
 <input type="submit" name="sub_cancel" value="Back to Compose Screen" />
</div>
</form>
% IFDEF $g_help
%   CALL attachments_help
% ENDIF
% CALL footer