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 | <script type="text/javascript" src="$WEB_ROOT$/dspam.js"></script> |
---|
8 | </HEAD> |
---|
9 | <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#000000" VLINK="#000000" ALINK="#000000"> |
---|
10 | <div id="header"> |
---|
11 | <div id="logo"> |
---|
12 | <a href="$CGI$?language=$LANG$" title="Home"><img src="$WEB_ROOT$/dspam-logo-small.gif" alt="DSPAM Logo"></a> |
---|
13 | <p>$DSPAMVERSION$</p> |
---|
14 | </div> |
---|
15 | <div id="userinfo"> |
---|
16 | $FORM_USER$ |
---|
17 | </div> |
---|
18 | </div> |
---|
19 | |
---|
20 | <br clear="left"> |
---|
21 | |
---|
22 | <div id="navcontainer"> |
---|
23 | <ul id="navlist"> |
---|
24 | <li><a href="$CGI$?$USER$template=performance&language=$LANG$">Performance</a></li> |
---|
25 | <li><a href="$CGI$?$USER$template=preferences&language=$LANG$">Preferences</a></li> |
---|
26 | <li><a href="$CGI$?$USER$template=alerts&language=$LANG$">Alerts</a></li> |
---|
27 | <li><a href="$CGI$?$USER$template=quarantine&language=$LANG$">Quarantine ($TOTAL_QUARANTINED_MESSAGES$)</a></li> |
---|
28 | <li><a href="$CGI$?$USER$template=analysis&language=$LANG$">Analysis</a></li> |
---|
29 | <li id="active"><a id="current" href="$CGI$?$USER$template=history&language=$LANG$&history_page=1&language=$LANG$">History</a></li> |
---|
30 | $NAV_ADMIN$ |
---|
31 | </ul> |
---|
32 | </div> |
---|
33 | |
---|
34 | <div id="panel"> |
---|
35 | |
---|
36 | <p> |
---|
37 | The messages that have been processed by the filter are shown below. The most recent messages are shown first. Use the retrain options to correct errors and |
---|
38 | deliver any false positives that are still in your quarantine. |
---|
39 | </p> |
---|
40 | |
---|
41 | <form name="history" action="dspam.cgi?language=$LANG$" method="POST"> |
---|
42 | <input type="submit" value="Retrain Checked"> |
---|
43 | <input type="hidden" name="template" value="history"> |
---|
44 | <input type="hidden" name="command" value="retrainChecked"> |
---|
45 | <input type="hidden" name="user" value="$REMOTE_USER$"> |
---|
46 | <input type="hidden" name="show" value="$SHOW$" > |
---|
47 | <input type="hidden" name="language" value="$LANG$"> |
---|
48 | |
---|
49 | $SHOW_SELECTOR$ |
---|
50 | |
---|
51 | <table border="0" cellspacing="0" cellpadding="2" width="100%"> |
---|
52 | <tr> |
---|
53 | <th>Type</th> |
---|
54 | <th>Retrain</th> |
---|
55 | <th>Day/Time</th> |
---|
56 | <th>From</th> |
---|
57 | <th>Subject</th> |
---|
58 | <th>Additional Info</th> |
---|
59 | </tr> |
---|
60 | $HISTORY$ |
---|
61 | </table> |
---|
62 | |
---|
63 | $HISTORYPAGES$ |
---|
64 | |
---|
65 | <input type="submit" value="Retrain Checked"> |
---|
66 | </form> |
---|
67 | |
---|
68 | </div> |
---|
69 | |
---|
70 | |
---|
71 | |
---|
72 | <script type="text/javascript" language="javascript"> |
---|
73 | <!-- |
---|
74 | var remote = null; |
---|
75 | |
---|
76 | function openwin(width, height, scroll, url) { |
---|
77 | remote = window.open('', 'SpecialIntro', 'width=' + width + ',height=' |
---|
78 | + height + ',resizable=1,dependent,scrollbars=' + scroll + |
---|
79 | ',status=0'); |
---|
80 | if (remote != null) { |
---|
81 | if (remote.opener == null) { remote.opener = self; } |
---|
82 | remote.location.href = url; |
---|
83 | } |
---|
84 | } |
---|
85 | //--> |
---|
86 | </script> |
---|
87 | |
---|
88 | </BODY> |
---|
89 | </HTML> |
---|