/usr/share/prayer/templates/old/toolbar.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 | %# $Cambridge: hermes/src/prayer/templates/old/toolbar.t,v 1.1 2008/09/16 10:52:48 dpc22 Exp $
%
<form method="post" accept-charset="UTF-8" enctype="multipart/form-data"
action="<% change |s %>">
<table style="width: 100%"><tr><td>
% CALL toolbar_left
</td><td>
Change to:
<select name="folder" size="1">
% IFDEF $g_favourites[0]
% FOREACH $m @g_favourites
% IFEQ $m->name $g_preferred
<option value="<% $m->name |c %>" selected="selected"><% ${m->name|7} |h %></option>
% ELSE
<option value="<% $m->name |c %>"><% ${m->name|7} |h %></option>
% ENDIF
% ENDFOREACH
% ELSE
% FOREACH $m @g_mailbox_list
<option value="<% $m->name |c %>"><% ${m->name|7} |h %></option>
% ENDFOREACH
% ENDIF
</select>
<input type="submit" name="sub_folder_dialogue" value="Go" />
</td><td align="right">
% CALL toolbar_right
</td></tr></table>
</form>
|