Updating examples for setting up directories
[squirrelmail.git] / plugins / filters / options.php
CommitLineData
849bdf42 1<?php
4b4abf93 2
15e6162e 3/**
0a1dc88e 4 * Message and Spam Filter Plugin - Filtering Options
15e6162e 5 *
47ccfad4 6 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
b2d8bc6c 7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
4b4abf93 8 * @version $Id$
ea5f4b8e 9 * @package plugins
10 * @subpackage filters
15e6162e 11 */
4eee5968 12
5b4ba967 13/**
14 * Path for SquirrelMail required files.
15 * @ignore
16 */
08185f2a 17define('SM_PATH','../../');
18
19/* SquirrelMail required files. */
fca6d99e 20require_once(SM_PATH . 'include/validate.php');
e5c8ec61 21include_once(SM_PATH . 'functions/imap.php');
22include_once(SM_PATH . 'plugins/filters/filters.php');
849bdf42 23
3c66c567 24displayPageHeader($color, 'None');
849bdf42 25
3c66c567 26/* get globals */
27sqgetGlobalVar('username', $username, SQ_SESSION);
28sqgetGlobalVar('key', $key, SQ_COOKIE);
29sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
30sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
31
32sqgetGlobalVar('theid', $theid);
33sqgetGlobalVar('action', $action, SQ_GET);
34
0a1dc88e 35if (sqgetGlobalVar('filter_submit',$filter_submit,SQ_POST)) {
36
37 if(! isset($theid) ) $theid = 0;
38
39 $complete_post=true;
40
41 // FIXME: write human readable error messages
42 sqgetGlobalVar('filter_what', $filter_what, SQ_POST);
43 if (!sqgetGlobalVar('filter_what', $filter_what, SQ_POST)) {
3b94163a 44 do_error("Post error");
45 $complete_post=false;
0a1dc88e 46 }
47
48 sqgetGlobalVar('filter_where', $filter_where, SQ_POST);
49 if (!sqgetGlobalVar('filter_where', $filter_where, SQ_POST)) {
3b94163a 50 do_error("Post error");
51 $complete_post=false;
0a1dc88e 52 }
53
54 sqgetGlobalVar('filter_folder', $filter_folder, SQ_POST);
55 if (!sqgetGlobalVar('filter_folder', $filter_folder, SQ_POST)) {
3b94163a 56 do_error("Post error");
57 $complete_post=false;
0a1dc88e 58 }
59
60 if ($complete_post) {
3b94163a 61 $filter_what = str_replace(',', ' ', $filter_what);
0a1dc88e 62 $filter_what = str_replace("\\\\", "\\", $filter_what);
63 $filter_what = str_replace("\\\"", '"', $filter_what);
64 $filter_what = str_replace('"', '&quot;', $filter_what);
65
174523e3 66 if (empty($filter_what)) {
67 do_error(_("WARNING! You must enter something to search for."));
68 $action = 'edit';
69 }
70
0a1dc88e 71 if (($filter_where == 'Header') && (strchr($filter_what,':') == '')) {
3b94163a 72 do_error(_("WARNING! Header filters should be of the format &quot;Header: value&quot;"));
73 $action = 'edit';
74 }
174523e3 75 if ($action != 'edit') {
3b94163a 76 setPref($data_dir, $username, 'filter'.$theid, $filter_where.','.$filter_what.','.$filter_folder);
174523e3 77 }
3b94163a 78 $filters[$theid]['where'] = $filter_where;
79 $filters[$theid]['what'] = $filter_what;
80 $filters[$theid]['folder'] = $filter_folder;
0a1dc88e 81 }
3b94163a 82} elseif (isset($action) && $action == 'delete') {
849bdf42 83 remove_filter($theid);
3b94163a 84} elseif (isset($action) && $action == 'move_up') {
849bdf42 85 filter_swap($theid, $theid - 1);
3b94163a 86} elseif (isset($action) && $action == 'move_down') {
849bdf42 87 filter_swap($theid, $theid + 1);
3b94163a 88} elseif (sqgetGlobalVar('user_submit',$user_submit,SQ_POST)) {
89 sqgetGlobalVar('filters_user_scan_set',$filters_user_scan_set,SQ_POST);
90 setPref($data_dir, $username, 'filters_user_scan', $filters_user_scan_set);
f265009a 91 echo '<br /><div style="text-align: center;"><b>'._("Saved Scan type")."</b></div>\n";
3b94163a 92}
849bdf42 93
849bdf42 94 $filters = load_filters();
c8a2c24d 95 $filters_user_scan = getPref($data_dir, $username, 'filters_user_scan');
849bdf42 96
6206f6c4 97 echo html_tag( 'table',
b01b21d0 98 html_tag( 'tr',
99 html_tag( 'td',
f265009a 100 '<div style="text-align: center;"><b>' . _("Options") . ' - ' . _("Message Filtering") . '</b></div>' ,
3b94163a 101 'left', $color[0]
102 )
103 ),
104 'center', '', 'width="95%" border="0" cellpadding="2" cellspacing="0"'
105 ) .
0a1dc88e 106 '<br /><form method="post" action="options.php">'.
24fec4fd 107 html_tag( 'table', '', 'center', '', 'border="0" cellpadding="2" cellspacing="0"' ) .
b01b21d0 108 html_tag( 'tr' ) .
c435f076 109 html_tag( 'th', _("What to Scan:"), 'right', '', 'style="white-space: nowrap;"' ) .
b01b21d0 110 html_tag( 'td', '', 'left' ) .
111 '<select name="filters_user_scan_set">'.
c8a2c24d 112 '<option value=""';
113 if ($filters_user_scan == '') {
e1728a7a 114 echo ' selected="selected"';
c8a2c24d 115 }
116 echo '>' . _("All messages") . '</option>'.
117 '<option value="new"';
118 if ($filters_user_scan == 'new') {
e1728a7a 119 echo ' selected="selected"';
c8a2c24d 120 }
121 echo '>' . _("Only unread messages") . '</option>' .
122 '</select>'.
123 '</td>'.
0a1dc88e 124 html_tag( 'td', '<input type="submit" name="user_submit" value="' . _("Save") . '" />', 'left' ) .
c8a2c24d 125 '</table>'.
c8a2c24d 126 '</form>'.
127
b01b21d0 128 html_tag( 'div', '[<a href="options.php?action=add">' . _("New") .
81f652a1 129 '</a>] - [<a href="'.SM_PATH.'src/options.php">' . _("Done") . '</a>]' ,
0a1dc88e 130 'center' ) . '<br />';
0e838332 131
3fd1252d 132 if (isset($action) && ($action == 'add' || $action == 'edit')) {
41100fce 133
3fd1252d 134 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
135 $boxes = sqimap_mailbox_list($imapConnection);
174523e3 136
137 for ($a = 0, $cnt = count($boxes); $a < $cnt; $a++) {
138 if (strtolower($boxes[$a]['formatted']) == 'inbox') {
139 unset($boxes[$a]);
140 }
141 }
142
3fd1252d 143 sqimap_logout($imapConnection);
144 if ( !isset($theid) ) {
849bdf42 145 $theid = count($filters);
3fd1252d 146 }
b01b21d0 147 echo html_tag( 'div', '', 'center' ) .
0a1dc88e 148 '<form action="options.php" method="post">'.
831a25d5 149 html_tag( 'table', '', '', '', 'border="0" cellpadding="2" cellspacing="0"' ) .
b01b21d0 150 html_tag( 'tr' ) .
151 html_tag( 'td', _("Match:"), 'left' ) .
152 html_tag( 'td', '', 'left' ) .
0a1dc88e 153 '<select name="filter_where">';
849bdf42 154
3fd1252d 155 $L = isset($filters[$theid]['where']);
156
e1728a7a 157 $sel = (($L && $filters[$theid]['where'] == 'From')?' selected="selected"':'');
158 echo "<option value=\"From\"$sel>" . _("From") . '</option>';
4eee5968 159
e1728a7a 160 $sel = (($L && $filters[$theid]['where'] == 'To')?' selected="selected"':'');
161 echo "<option value=\"To\"$sel>" . _("To") . '</option>';
3fd1252d 162
e1728a7a 163 $sel = (($L && $filters[$theid]['where'] == 'Cc')?' selected="selected"':'');
164 echo "<option value=\"Cc\"$sel>" . _("Cc") . '</option>';
3fd1252d 165
e1728a7a 166 $sel = (($L && $filters[$theid]['where'] == 'To or Cc')?' selected="selected"':'');
167 echo "<option value=\"To or Cc\"$sel>" . _("To or Cc") . '</option>';
3fd1252d 168
e1728a7a 169 $sel = (($L && $filters[$theid]['where'] == 'Subject')?' selected="selected"':'');
170 echo "<option value=\"Subject\"$sel>" . _("Subject") . '</option>';
3fd1252d 171
8a7ccd82 172 $sel = (($L && $filters[$theid]['where'] == 'Message Body')?' selected="selected"':'');
173 echo "<option value=\"Message Body\"$sel>" . _("Message Body") . '</option>';
174
175 $sel = (($L && $filters[$theid]['where'] == 'Header and Body')?' selected="selected"':'');
176 echo "<option value=\"Header and Body\"$sel>" . _("Header and Body") . '</option>';
177
e1728a7a 178 $sel = (($L && $filters[$theid]['where'] == 'Header')?' selected="selected"':'');
179 echo "<option value=\"Header\"$sel>" . _("Header") . '</option>';
9da6bdde 180
3fd1252d 181 echo '</select>'.
4eee5968 182 '</td>'.
183 '</tr>'.
b01b21d0 184 html_tag( 'tr' ) .
185 html_tag( 'td', _("Contains:"), 'right' ) .
186 html_tag( 'td', '', 'left' ) .
0a1dc88e 187 '<input type="text" size="32" name="filter_what" value="';
3fd1252d 188 if (isset($filters[$theid]['what'])) {
92657342 189 echo htmlspecialchars($filters[$theid]['what']);
3fd1252d 190 }
0a1dc88e 191 echo '" />'.
4eee5968 192 '</td>'.
193 '</tr>'.
b01b21d0 194 html_tag( 'tr' ) .
195 html_tag( 'td', _("Move to:"), 'left' ) .
196 html_tag( 'td', '', 'left' ) .
4eee5968 197 '<tt>'.
0a1dc88e 198 '<select name="filter_folder">';
81f652a1 199 $selected = 0;
200 if ( isset($filters[$theid]['folder']) )
201 $selected = array(strtolower($filters[$theid]['folder']));
202 echo sqimap_mailbox_option_list(0, $selected, 0, $boxes);
24fec4fd 203 echo '</select>'.
204 '</tt>'.
4eee5968 205 '</td>'.
206 '</tr>'.
3fd1252d 207 '</table>'.
0a1dc88e 208 '<input type="submit" name="filter_submit" value="' . _("Submit") . "\" />\n".
a9e1e670 209 addHidden('theid', $theid).
3fd1252d 210 '</form>'.
b01b21d0 211 '</div>';
3fd1252d 212
3fd1252d 213 }
cb2ccf4b 214
24fec4fd 215if (count($filters)) {
3b94163a 216 echo html_tag( 'table', '', 'center', '', 'border="0" cellpadding="3" cellspacing="0"' );
cb2ccf4b 217
ae48f757 218 for ($i=0, $num = count($filters); $i < $num; $i++) {
cb2ccf4b 219
220 $clr = (($i % 2)?$color[0]:$color[9]);
221 $fdr = ($folder_prefix)?str_replace($folder_prefix, "", $filters[$i]["folder"]):$filters[$i]["folder"];
831a25d5 222 echo html_tag( 'tr', '', '', $clr ) .
b01b21d0 223 html_tag( 'td',
224 '<small>' .
0a1dc88e 225 "[<a href=\"options.php?theid=$i&amp;action=edit\">" . _("Edit") . '</a>]'.
b01b21d0 226 '</small>' ,
227 'left' ) .
228 html_tag( 'td',
229 '<small>' .
0a1dc88e 230 "[<a href=\"options.php?theid=$i&amp;action=delete\">" . _("Delete") . '</a>]'.
b01b21d0 231 '</small>' ,
3b94163a 232 'left' );
233
234 if ($num > 1) {
235 echo html_tag( 'td', '', 'center' ) . '<small>[';
236 if (isset($filters[$i + 1])) {
237 echo "<a href=\"options.php?theid=$i&amp;action=move_down\">" . _("Down") . '</a>';
238 if ($i > 0) {
239 echo '&nbsp;|&nbsp;';
240 }
241 }
cb2ccf4b 242 if ($i > 0) {
3b94163a 243 echo "<a href=\"options.php?theid=$i&amp;action=move_up\">" . _("Up") . '</a>';
cb2ccf4b 244 }
3b94163a 245 echo ']</small></td>';
cb2ccf4b 246 }
3b94163a 247 echo html_tag( 'td', '-', 'left' ) .
248 html_tag( 'td', '', 'left' );
0a1dc88e 249 printf( _("If %s contains %s then move to %s"),
3b94163a 250 '<b>'.$filters[$i]['where'].'</b>',
251 '<b>'.$filters[$i]['what'].'</b>',
252 '<b>'.imap_utf7_decode_local($fdr).'</b>');
cb2ccf4b 253 echo '</td></tr>';
254
255 }
24fec4fd 256 echo '</table>';
257}
258 echo html_tag( 'table',
b01b21d0 259 html_tag( 'tr',
8e724112 260 html_tag( 'td', '&nbsp;', 'left' )
b01b21d0 261 ) ,
262 'center', '', 'width="80%" border="0" cellpadding="2" cellspacing="0"' );
dcc1cc82 263 echo '</body></html>';
4b4abf93 264?>