]> git.proxmox.com Git - pmg-api.git/blame - templates/spamreport-verbose.tt
pmgreport: add quarantine data
[pmg-api.git] / templates / spamreport-verbose.tt
CommitLineData
9a56f771
DM
1[%- IF timespan == 'week' -%]
2[%- SET title = "Weekly Spam Report for '${pmail}' - ${date}'" -%]
3[%- ELSE %]
4[%- SET title = "Daily Spam Report for '${pmail}' - ${date}" -%]
5[%- END -%]
6<html>
1d20daff
DM
7 <head>
8 <title>[% title %]</title>
9 </head>
10 <body>
11
12 <div align=center>
13
14
15 <table width='100%'>
16 <tr>
17 <td colspan=2>
18 <div style='width:600px;'><h2>[% title %]</h2></div>
19 </td>
20 </tr>
21
22 <tr><td colspan=2><hr></td></tr>
23
24 <!--start entries-->
25 [% FOREACH item IN items %]
26 <tr title='[% item.title %]'>
27 <td>[% item.from %]</td>
28 <td align=right nowrap>[% item.date %] [% item.time %]</td>
29 </tr>
30 <tr title='[% item.title %]'>
31 <td><a style='cursor:pointer;' href='[% item.href | url %]'><b>[% item.subject %]</b></a></td>
32 <td align=right nowrap>
33 <div style='font-size:xx-small;'>
34 <a href='[% item.wlhref | url %]'>Whitelist</a>&nbsp;
35 <a href='[% item.blhref | url %]'>Blacklist</a>&nbsp;
36 <a href='[% item.deliverhref | url %]'>Deliver</a>&nbsp;
37 <a href='[% item.deletehref | url %]'>Delete</a>
38 </div>
39 </td>
40 </tr>
41 <tr><td colspan=2><hr></td></tr>
42 [% END %]
43 <!--end entries-->
44
45 </table>
46
47 <p>Please use the <a href='[% managehref | url %]'>web interface</a> to manage your spam quarantine.</p>
48 <p>Powered by <a target=_blank href='http://www.proxmox.com'>Proxmox</a>.</p>
49
50 </div>
51
52 </body>
9a56f771 53</html>