122bd37d67c65ee50b13aecaca155cdd52d5ffbb
[squirrelmail.git] / plugins / filters / options.php
1 <?php
2 /**
3 * Message and Spam Filter Plugin - Filtering Options
4 *
5 * This plugin filters your inbox into different folders based upon given
6 * criteria. It is most useful for people who are subscibed to mailing lists
7 * to help organize their messages. The argument stands that filtering is
8 * not the place of the client, which is why this has been made a plugin for
9 * SquirrelMail. You may be better off using products such as Sieve or
10 * Procmail to do your filtering so it happens even when SquirrelMail isn't
11 * running.
12 *
13 * If you need help with this, or see improvements that can be made, please
14 * email me directly at the address above. I definately welcome suggestions
15 * and comments. This plugin, as is the case with all SquirrelMail plugins,
16 * is not directly supported by the developers. Please come to me off the
17 * mailing list if you have trouble with it.
18 *
19 * Also view plugins/README.plugins for more information.
20 *
21 * @version $Id$
22 * @copyright (c) 1999-2005 The SquirrelMail Project Team
23 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
24 * @package plugins
25 * @subpackage filters
26 */
27
28 /**
29 * Path for SquirrelMail required files.
30 * @ignore
31 */
32 define('SM_PATH','../../');
33
34 /* SquirrelMail required files. */
35 require_once(SM_PATH . 'include/validate.php');
36 require_once(SM_PATH . 'functions/imap.php');
37 require_once(SM_PATH . 'plugins/filters/filters.php');
38
39 if (!file_exists(SM_PATH . 'plugins/filters/config.php')) return;
40 include_once (SM_PATH . 'plugins/filters/config.php');
41
42 global $AllowSpamFilters;
43
44 displayPageHeader($color, 'None');
45
46 /* get globals */
47 sqgetGlobalVar('username', $username, SQ_SESSION);
48 sqgetGlobalVar('key', $key, SQ_COOKIE);
49 sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
50 sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
51
52 sqgetGlobalVar('theid', $theid);
53 sqgetGlobalVar('action', $action, SQ_GET);
54
55 if (sqgetGlobalVar('filter_submit',$filter_submit,SQ_POST)) {
56
57 if(! isset($theid) ) $theid = 0;
58
59 $complete_post=true;
60
61 // FIXME: write human readable error messages
62 sqgetGlobalVar('filter_what', $filter_what, SQ_POST);
63 if (!sqgetGlobalVar('filter_what', $filter_what, SQ_POST)) {
64 do_error("Post error");
65 $complete_post=false;
66 }
67
68 sqgetGlobalVar('filter_where', $filter_where, SQ_POST);
69 if (!sqgetGlobalVar('filter_where', $filter_where, SQ_POST)) {
70 do_error("Post error");
71 $complete_post=false;
72 }
73
74 sqgetGlobalVar('filter_folder', $filter_folder, SQ_POST);
75 if (!sqgetGlobalVar('filter_folder', $filter_folder, SQ_POST)) {
76 do_error("Post error");
77 $complete_post=false;
78 }
79
80 if ($complete_post) {
81 $filter_what = str_replace(',', ' ', $filter_what);
82 $filter_what = str_replace("\\\\", "\\", $filter_what);
83 $filter_what = str_replace("\\\"", '"', $filter_what);
84 $filter_what = str_replace('"', '&quot;', $filter_what);
85
86 if (empty($filter_what)) {
87 do_error(_("WARNING! You must enter something to search for."));
88 $action = 'edit';
89 }
90
91 if (($filter_where == 'Header') && (strchr($filter_what,':') == '')) {
92 do_error(_("WARNING! Header filters should be of the format &quot;Header: value&quot;"));
93 $action = 'edit';
94 }
95 if ($action != 'edit') {
96 setPref($data_dir, $username, 'filter'.$theid, $filter_where.','.$filter_what.','.$filter_folder);
97 }
98 $filters[$theid]['where'] = $filter_where;
99 $filters[$theid]['what'] = $filter_what;
100 $filters[$theid]['folder'] = $filter_folder;
101 }
102 } elseif (isset($action) && $action == 'delete') {
103 remove_filter($theid);
104 } elseif (isset($action) && $action == 'move_up') {
105 filter_swap($theid, $theid - 1);
106 } elseif (isset($action) && $action == 'move_down') {
107 filter_swap($theid, $theid + 1);
108 } elseif (sqgetGlobalVar('user_submit',$user_submit,SQ_POST)) {
109 sqgetGlobalVar('filters_user_scan_set',$filters_user_scan_set,SQ_POST);
110 setPref($data_dir, $username, 'filters_user_scan', $filters_user_scan_set);
111 echo '<br /><center><b>'._("Saved Scan type")."</b></center>\n";
112 }
113
114 $filters = load_filters();
115 $filters_user_scan = getPref($data_dir, $username, 'filters_user_scan');
116
117 echo html_tag( 'table',
118 html_tag( 'tr',
119 html_tag( 'td',
120 '<center><b>' . _("Options") . ' - ' . _("Message Filtering") . '</b></center>' ,
121 'left', $color[0]
122 )
123 ),
124 'center', '', 'width="95%" border="0" cellpadding="2" cellspacing="0"'
125 ) .
126 '<br /><form method="post" action="options.php">'.
127 '<center>'.
128 html_tag( 'table', '', '', '', 'border="0" cellpadding="2" cellspacing="0"' ) .
129 html_tag( 'tr' ) .
130 html_tag( 'th', _("What to Scan:"), 'right', '', 'style="white-space: nowrap;"' ) .
131 html_tag( 'td', '', 'left' ) .
132 '<select name="filters_user_scan_set">'.
133 '<option value=""';
134 if ($filters_user_scan == '') {
135 echo ' selected="selected"';
136 }
137 echo '>' . _("All messages") . '</option>'.
138 '<option value="new"';
139 if ($filters_user_scan == 'new') {
140 echo ' selected="selected"';
141 }
142 echo '>' . _("Only unread messages") . '</option>' .
143 '</select>'.
144 '</td>'.
145 html_tag( 'td', '<input type="submit" name="user_submit" value="' . _("Save") . '" />', 'left' ) .
146 '</table>'.
147 '</center>'.
148 '</form>'.
149
150 html_tag( 'div', '[<a href="options.php?action=add">' . _("New") .
151 '</a>] - [<a href="'.SM_PATH.'src/options.php">' . _("Done") . '</a>]' ,
152 'center' ) . '<br />';
153
154 if (isset($action) && ($action == 'add' || $action == 'edit')) {
155
156 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
157 $boxes = sqimap_mailbox_list($imapConnection);
158
159 for ($a = 0, $cnt = count($boxes); $a < $cnt; $a++) {
160 if (strtolower($boxes[$a]['formatted']) == 'inbox') {
161 unset($boxes[$a]);
162 }
163 }
164
165 sqimap_logout($imapConnection);
166 if ( !isset($theid) ) {
167 $theid = count($filters);
168 }
169 echo html_tag( 'div', '', 'center' ) .
170 '<form action="options.php" method="post">'.
171 html_tag( 'table', '', '', '', 'border="0" cellpadding="2" cellspacing="0"' ) .
172 html_tag( 'tr' ) .
173 html_tag( 'td', _("Match:"), 'left' ) .
174 html_tag( 'td', '', 'left' ) .
175 '<select name="filter_where">';
176
177 $L = isset($filters[$theid]['where']);
178
179 $sel = (($L && $filters[$theid]['where'] == 'From')?' selected="selected"':'');
180 echo "<option value=\"From\"$sel>" . _("From") . '</option>';
181
182 $sel = (($L && $filters[$theid]['where'] == 'To')?' selected="selected"':'');
183 echo "<option value=\"To\"$sel>" . _("To") . '</option>';
184
185 $sel = (($L && $filters[$theid]['where'] == 'Cc')?' selected="selected"':'');
186 echo "<option value=\"Cc\"$sel>" . _("Cc") . '</option>';
187
188 $sel = (($L && $filters[$theid]['where'] == 'To or Cc')?' selected="selected"':'');
189 echo "<option value=\"To or Cc\"$sel>" . _("To or Cc") . '</option>';
190
191 $sel = (($L && $filters[$theid]['where'] == 'Subject')?' selected="selected"':'');
192 echo "<option value=\"Subject\"$sel>" . _("Subject") . '</option>';
193
194 $sel = (($L && $filters[$theid]['where'] == 'Message Body')?' selected="selected"':'');
195 echo "<option value=\"Message Body\"$sel>" . _("Message Body") . '</option>';
196
197 $sel = (($L && $filters[$theid]['where'] == 'Header and Body')?' selected="selected"':'');
198 echo "<option value=\"Header and Body\"$sel>" . _("Header and Body") . '</option>';
199
200 $sel = (($L && $filters[$theid]['where'] == 'Header')?' selected="selected"':'');
201 echo "<option value=\"Header\"$sel>" . _("Header") . '</option>';
202
203 echo '</select>'.
204 '</td>'.
205 '</tr>'.
206 html_tag( 'tr' ) .
207 html_tag( 'td', _("Contains:"), 'right' ) .
208 html_tag( 'td', '', 'left' ) .
209 '<input type="text" size="32" name="filter_what" value="';
210 if (isset($filters[$theid]['what'])) {
211 echo $filters[$theid]['what'];
212 }
213 echo '" />'.
214 '</td>'.
215 '</tr>'.
216 html_tag( 'tr' ) .
217 html_tag( 'td', _("Move to:"), 'left' ) .
218 html_tag( 'td', '', 'left' ) .
219 '<tt>'.
220 '<select name="filter_folder">';
221 $selected = 0;
222 if ( isset($filters[$theid]['folder']) )
223 $selected = array(strtolower($filters[$theid]['folder']));
224 echo sqimap_mailbox_option_list(0, $selected, 0, $boxes);
225 echo '</tt>'.
226 '</select>'.
227 '</td>'.
228 '</tr>'.
229 '</table>'.
230 '<input type="submit" name="filter_submit" value="' . _("Submit") . "\" />\n".
231 addHidden('theid', $theid).
232 '</form>'.
233 '</div>';
234
235 }
236
237 echo html_tag( 'table', '', 'center', '', 'border="0" cellpadding="3" cellspacing="0"' );
238
239 for ($i=0, $num = count($filters); $i < $num; $i++) {
240
241 $clr = (($i % 2)?$color[0]:$color[9]);
242 $fdr = ($folder_prefix)?str_replace($folder_prefix, "", $filters[$i]["folder"]):$filters[$i]["folder"];
243 echo html_tag( 'tr', '', '', $clr ) .
244 html_tag( 'td',
245 '<small>' .
246 "[<a href=\"options.php?theid=$i&amp;action=edit\">" . _("Edit") . '</a>]'.
247 '</small>' ,
248 'left' ) .
249 html_tag( 'td',
250 '<small>' .
251 "[<a href=\"options.php?theid=$i&amp;action=delete\">" . _("Delete") . '</a>]'.
252 '</small>' ,
253 'left' );
254
255 if ($num > 1) {
256 echo html_tag( 'td', '', 'center' ) . '<small>[';
257 if (isset($filters[$i + 1])) {
258 echo "<a href=\"options.php?theid=$i&amp;action=move_down\">" . _("Down") . '</a>';
259 if ($i > 0) {
260 echo '&nbsp;|&nbsp;';
261 }
262 }
263 if ($i > 0) {
264 echo "<a href=\"options.php?theid=$i&amp;action=move_up\">" . _("Up") . '</a>';
265 }
266 echo ']</small></td>';
267 }
268 echo html_tag( 'td', '-', 'left' ) .
269 html_tag( 'td', '', 'left' );
270 printf( _("If %s contains %s then move to %s"),
271 '<b>'.$filters[$i]['where'].'</b>',
272 '<b>'.$filters[$i]['what'].'</b>',
273 '<b>'.imap_utf7_decode_local($fdr).'</b>');
274 echo '</td></tr>';
275
276 }
277 echo '</table>'.
278 html_tag( 'table',
279 html_tag( 'tr',
280 html_tag( 'td', '&nbsp;', 'left' )
281 ) ,
282 'center', '', 'width="80%" border="0" cellpadding="2" cellspacing="0"' );
283 echo '</body></html>';
284 ?>