/usr/share/prayer/templates/cam/spam.t is in prayer-templates-src 1.3.5-dfsg1-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 | %# $Cambridge: hermes/src/prayer/templates/cam/spam.t,v 1.2 2009/04/07 12:01:48 dpc22 Exp $
%#
% CALL header
% CALL toolbar
% CALL container_start
% CALL status
<h2 style="text-align: center">Junk Email (Spam) Filtering</h2>
<p>This option automatically files mail based on how much it looks
like junk email (spam).</p>
<p>Each message is given a score which is higher if the message has
more spam-like features. You pick a threshold score above which
messages are filtered to a folder named "spam". Thresholds
of 10 or more have no effect because high-scoring email is blocked.
Thresholds of 4 or less are likely to misclassify legitimate email as
spam. The scoring system is tuned to work best with a threshold of
5.</p>
<form method="post" accept-charset="UTF-8"
enctype="multipart/form-data" action="<% spam |s %>">
<table>
<tr>
<td>Filter threshold:</td>
<td><input name="spam_threshold" value="<% $spam_threshold |h %>" size="5" /></td>
% IFDEF $spam_enabled
<td>(currently enabled)</td>
% ELSE
<td>(currently disabled)</td>
% ENDIF
</tr>
<tr>
<td>
% IFDEF $spam_purge_enabled
<input type="checkbox" name="spam_purge" value="1" checked="checked" />
% ELSE
<input type="checkbox" name="spam_purge" value="1" />
% ENDIF
% IFDEF $using_sieve
Purge after:</td>
<td><input name="spam_purge_timeout"
value="<% $spam_purge_timeout |h %>" size="5" /></td>
<td>days</td>
% ELSE
</td>
% ENDIF
</tr>
</table>
<table><tr>
<td style="vertical-align: middle">Whitelist (one address per line):</td><td>
<textarea name="spam_whitelist"
rows="8" cols="40"><% $spam_whitelist |h %></textarea>
</td></tr></table>
<table>
<tr>
<td><input type="submit" name="sub_cancel" value="Back to Options Screen" /></td>
<td><input type="submit" name="sub_disable" value="Disable Filtering" /></td>
<td><input type="submit" name="sub_enable"
value="Enable Filtering with this threshold" /></td>
</tr>
</table>
</form>
% IFDEF $g_help
% CALL spam_help
% ENDIF
% CALL container_end
% CALL footer
|