Added i18n for SpamFilters_YourHop warning
[squirrelmail.git] / plugins / filters / spamoptions.php
CommitLineData
63277aaa 1<?php
2 /**
3 ** Message and Spam Filter Plugin
4 **
5 ** Copyright (c) 1999-2001 The Squirrelmail Development Team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** This plugin filters your inbox into different folders based upon given
9 ** criteria. It is most useful for people who are subscibed to mailing lists
10 ** to help organize their messages. The argument stands that filtering is
11 ** not the place of the client, which is why this has been made a plugin for
12 ** SquirrelMail. You may be better off using products such as Sieve or
13 ** Procmail to do your filtering so it happens even when SquirrelMail isn't
14 ** running.
15 **
16 ** If you need help with this, or see improvements that can be made, please
17 ** email me directly at the address above. I definately welcome suggestions
18 ** and comments. This plugin, as is the case with all SquirrelMail plugins,
19 ** is not directly supported by the developers. Please come to me off the
20 ** mailing list if you have trouble with it.
21 **
22 ** Also view plugins/README.plugins for more information.
23 **
24 **/
25
26 chdir ('..');
27 require_once('../src/validate.php');
28 require_once('../functions/page_header.php');
29 require_once('../functions/imap.php');
30 require_once('../src/load_prefs.php');
31
32 global $AllowSpamFilters;
33
34 displayPageHeader($color, 'None');
35
36 if (isset($spam_submit)) {
37 $spam_filters = load_spam_filters();
38 setPref($data_dir, $username, 'filters_spam_folder', $filters_spam_folder_set);
39 setPref($data_dir, $username, 'filters_spam_scan', $filters_spam_scan_set);
40 foreach ($spam_filters as $Key => $Value) {
41 $input = $spam_filters[$Key]['prefname'] . '_set';
42 setPref($data_dir, $username, $spam_filters[$Key]['prefname'],
43 $$input);
44 }
45 }
46
47 $filters_spam_folder = getPref($data_dir, $username, 'filters_spam_folder');
48 $filters_spam_scan = getPref($data_dir, $username, 'filters_spam_scan');
49 $filters = load_filters();
50
51 echo "<table width=95% align=center border=0 cellpadding=2 cellspacing=0 bgcolor=\"$color[0]\">".
52 '<tr><th align=center>' . _("Spam Filtering") . '</th></tr>'.
53 '</table>';
54
5e2e3895 55 if ($SpamFilters_YourHop == ' ') {
b188caac 56 echo '<BR><center><b>' . _("WARNING! Tell your admin to set the SpamFilters_YourHop variable") . '</b></center><BR>';
5e2e3895 57 }
58
63277aaa 59
60 if (isset($action) && $action == 'spam') {
61 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
62 $boxes = sqimap_mailbox_list($imapConnection);
63 sqimap_logout($imapConnection);
64 for ($i = 0; $i < count($boxes) && $filters_spam_folder == ''; $i++) {
65 if ($boxes[$i]['flags'][0] != 'noselect' &&
66 $boxes[$i]['flags'][1] != 'noselect' &&
67 $boxes[$i]['flags'][2] != 'noselect') {
68 $filters_spam_folder = $boxes[$i]['unformatted'];
69 }
70 }
71
72 echo '<form method=post action="spamoptions.php">'.
73 '<center>'.
74 '<table width=85% cellpadding=2 cellspacing=0 border=0>'.
75 '<tr>'.
76 '<th align=right nowrap>' . _("Move spam to:") . '</th>'.
77 '<td><select name="filters_spam_folder_set">';
78
79 for ($i = 0; $i < count($boxes); $i++) {
80 if (! in_array('noselect', $boxes[$i]['flags'])) {
81 $box = $boxes[$i]['unformatted'];
82 $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['formatted']);
83 if ($filters_spam_folder == $box)
84 echo "<OPTION VALUE=\"$box\" SELECTED>$box2</OPTION>\n";
85 else
86 echo "<OPTION VALUE=\"$box\">$box2</OPTION>\n";
87 }
88 }
89 echo '</select>'.
90 '</td>'.
91 '</tr>'.
92 '<tr><td></td><td>' .
93 _("Moving spam directly to the trash may not be a good idea at first, since messages from friends and mailing lists might accidentally be marked as spam. Whatever folder you set this to, make sure that it gets cleaned out periodically, so that you don't have an excessively large mailbox hanging around.") .
94 '</td></tr>'.
95 '<tr>'.
96 '<th align=right nowrap>' . _("What to Scan:") . '</th>'.
97 '<td><select name="filters_spam_scan_set">'.
98 '<option value=""';
99 if ($filters_spam_scan == '')
100 echo ' SELECTED';
101 echo '>' . _("All messages") . '</option>'.
102 '<option value="new"';
103 if ($filters_spam_scan == 'new')
104 echo ' SELECTED';
105 echo '>' . _("Only unread messages") . '</option>' .
106 '</select>'.
107 '</td>'.
108 '</tr>'.
109 '<tr>'.
110 '<td></td><td>'.
111 _("The more messages you scan, the longer it takes. I would suggest that you scan only new messages. If you make a change to your filters, I would set it to scan all messages, then go view my INBOX, then come back and set it to scan only new messages. That way, your new spam filters will be applied and you'll scan even the spam you read with the new filters.").
112 '</td></tr>';
113
114 $spam_filters = load_spam_filters();
115
116 foreach ($spam_filters as $Key => $Value) {
117 echo "<tr><th align=right nowrap>$Key</th>\n" .
118 '<td><input type=checkbox name="' .
119 $spam_filters[$Key]['prefname'] .
120 '_set"';
121 if ($spam_filters[$Key]['enabled'])
122 echo ' CHECKED';
123 echo '> - ';
124 if ($spam_filters[$Key]['link']) {
125 echo '<a href="' .
126 $spam_filters[$Key]['link'] .
127 '" target="_blank">';
128 }
129 echo $spam_filters[$Key]['name'];
130 if ($spam_filters[$Key]['link']) {
131 echo '</a>';
132 }
133 echo '</td></tr><tr><td></td><td>' .
134 $spam_filters[$Key]['comment'] .
135 "</td></tr>\n";
136 }
137 echo '<tr><td colspan=2 align=center><input type=submit name="spam_submit" value="' . _("Save") . '"></td></tr>'.
138 '</table>'.
139 '</center>'.
140 '</form>';
141
142 sqimap_logout($imapConnection);
143 }
144
145 if (! isset($action) || $action != 'spam') {
146
147 echo '<p align=center>[<a href="spamoptions.php?action=spam">' . _("Edit") . '</a>]' .
148 ' - [<a href="../../src/options.php">' . _("Done") . '</a>]</center><br><br>';
149 printf( _("Spam is sent to <b>%s</b>"), ($filters_spam_folder?$filters_spam_folder:_("[<i>not set yet</i>]") ) );
150 echo '<br>';
151 printf( _("Spam scan is limited to <b>%s</b>"), (($filters_spam_scan == 'new')?_("New Messages Only"):_("All Messages") ) );
152 echo '</p>'.
153 "<table border=0 cellpadding=3 cellspacing=0 align=center bgcolor=\"$color[0]\">";
154
155 $spam_filters = load_spam_filters();
156
157 foreach ($spam_filters as $Key => $Value) {
158 echo '<tr><th align=center>';
159
160 if ($spam_filters[$Key]['enabled']) {
161 echo _("ON");
162 } else {
163 echo _("OFF");
164 }
165
166 echo '</th><td>&nbsp;-&nbsp;</td><td>';
167
168 if ($spam_filters[$Key]['link']) {
169 echo '<a href="' .
170 $spam_filters[$Key]['link'] .
171 '" target="_blank">';
172 }
173
174 echo $spam_filters[$Key]['name'];
175 if ($spam_filters[$Key]['link']) {
176 echo '</a>';
177 }
178 echo "</td></tr>\n";
179 }
180 echo '</table>';
181 }
182
183?>