source: npl/mailserver/dspam/dspam-3.10.2/webui/cgi-bin/templates/nav_performance.html

Last change on this file was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 3.9 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<HTML>
3<HEAD><TITLE>DSPAM v3 Control Center</TITLE>
4<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
5<link rel="icon" href="$WEB_ROOT$/favicon.ico" type="image/vnd.microsoft.icon">
6<LINK REL="STYLESHEET" HREF="$WEB_ROOT$/base.css">
7</HEAD>
8<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#000000" VLINK="#000000" ALINK="#000000">
9<div id="header">
10        <div id="logo">
11                <a href="$CGI$?language=$LANG$" title="Home"><img src="$WEB_ROOT$/dspam-logo-small.gif" alt="DSPAM Logo"></a>
12                <p>$DSPAMVERSION$</p>
13        </div>
14        <div id="userinfo">
15                $FORM_USER$
16        </div>
17</div>
18
19<br clear="left">
20
21<div id="navcontainer">
22        <ul id="navlist">
23                <li id="active"><a id="current" href="$CGI$?$USER$template=performance&amp;language=$LANG$">Performance</a></li>
24                <li><a href="$CGI$?$USER$template=preferences&amp;language=$LANG$">Preferences</a></li>
25                <li><a href="$CGI$?$USER$template=alerts&amp;language=$LANG$">Alerts</a></li>
26                <li><a href="$CGI$?$USER$template=quarantine&amp;language=$LANG$">Quarantine ($TOTAL_QUARANTINED_MESSAGES$)</a></li>
27                <li><a href="$CGI$?$USER$template=analysis&amp;language=$LANG$">Analysis</a></li>
28                <li><a href="$CGI$?$USER$template=history&amp;language=$LANG$&amp;history_page=1">History</a></li>
29                $NAV_ADMIN$
30        </ul>
31</div>
32
33<div id="panel">
34
35<p>
36If you receive a message in your e-mail application that was not caught by
37the filter, please forward it to
38<strong>spam-$REMOTE_USER$$LOCAL_DOMAIN$</strong>
39so that it can be analyzed and learned as SPAM. This will improve the filter's accuracy in the future.
40</p>
41
42<div class="content">
43        <h3><strong>Performance Statistics</strong> - $TIME$</h3>
44
45        <table border="0" cellspacing="0" cellpadding="4">
46                <tr>
47                        <th>Metric</th>
48                        <th>&nbsp;</th>
49                        <th>Calculated as</th>
50                </tr>
51                <tr class="rowEven">
52                        <td>Overall accuracy (since last reset)</td>
53                        <td><strong>$OVERALL_ACCURACY$%</strong></td>
54                        <td class="rowDivider"><span class="small">(SPAM messages caught + Good messages delivered) / Total number of messages</span></td>
55                </tr>
56                <tr class="rowOdd">
57                        <td>Spam identification (since last reset)</td>
58                        <td><strong>$SPAM_ACCURACY$%</strong></td>
59                        <td class="rowDivider"><span class="small">(Spam catch rate only)</span></td>
60               </tr>
61                <tr class="rowEven">
62                        <td>Spam ratio (of total processed)</td>
63                        <td><strong>$SPAM_RATIO$%</strong></td>
64                        <td class="rowDivider"><span class="small">Total SPAM messages (both caught & missed) / Total number of messages</span></td>
65                </tr>
66        </table>
67        <table border="0" cellspacing="0" cellpadding="4">
68                <tr>
69                        <th>&nbsp;</th>
70                        <th>SPAM messages</th>
71                        <th>Good messages</th>
72                </tr>
73                <tr class="rowEven">
74                        <td rowspan="3" valign="top" nowrap>Since last reset</td>
75                        <td>$TOTAL_SPAM_MISSED$ missed</td>
76                        <td>$TOTAL_NONSPAM_MISSED$ missed</td>
77                </tr>
78                <tr class="rowEven">
79                        <td>$TOTAL_SPAM_CAUGHT$ caught</td>
80                        <td>$TOTAL_NONSPAM_CAUGHT$ delivered</td>
81                </tr>
82                <tr class="rowEven">
83                        <td>$SPAM_ACCURACY$% caught</td>
84                        <td>$NONSPAM_ERROR_RATE$% missed</td>
85                </tr>
86                <tr class="rowOdd">
87                        <td rowspan="2" valign="top" nowrap>Total processed by filter</td>
88                        <td>$TOTAL_SPAM_LEARNED$ missed</td>
89                        <td>$TOTAL_NONSPAM_LEARNED$ missed</td>
90                </tr>
91                <tr class="rowOdd">
92                        <td>$TOTAL_SPAM_SCANNED$ caught</td>
93                        <td>$TOTAL_NONSPAM_SCANNED$ delivered</td>
94                </tr>
95                <tr class="rowEven">
96                        <td valign="top" nowrap>From corpus</td>
97                        <td>$TOTAL_SPAM_CORPUSFED$ fed</td>
98                        <td>$TOTAL_NONSPAM_CORPUSFED$ fed</td>
99                </tr>
100        </table>
101
102        <p>
103                <a href="$CGI$?$USER$command=resetStats&amp;language=$LANG$" title="Reset the statistics">Reset</a> | <a href="$CGI$?$USER$command=tweak" title="Adjustment for messages that are forwarded to the filter">Tweak -1</a>
104        </p>
105</div>
106
107</div>
108
109
110
111</body>
112</html>
Note: See TracBrowser for help on using the repository browser.