X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Ffilters%2Foptions.php;h=01802334f4e7b0c5da40198a79310b8559fe373e;hp=33aecc752ed3803b2a4faf07da8105c591f05a35;hb=6c84ba1ec45ab854c37b6f65c5b4d84ab1c7aad4;hpb=5b4ba967c2353d583ae6f010a3bf51a86febc057 diff --git a/plugins/filters/options.php b/plugins/filters/options.php index 33aecc75..01802334 100644 --- a/plugins/filters/options.php +++ b/plugins/filters/options.php @@ -1,10 +1,6 @@ '); - $action = 'edit'; - } - setPref($data_dir, $username, 'filter'.$theid, $filter_where.','.$filter_what.','.$filter_folder); - $filters[$theid]['where'] = $filter_where; - $filters[$theid]['what'] = $filter_what; - $filters[$theid]['folder'] = $filter_folder; - } elseif (isset($action) && $action == 'delete') { +if (sqgetGlobalVar('filter_submit',$filter_submit,SQ_POST)) { + + if(! isset($theid) ) $theid = 0; + + $complete_post=true; + + // FIXME: write human readable error messages + sqgetGlobalVar('filter_what', $filter_what, SQ_POST); + if (!sqgetGlobalVar('filter_what', $filter_what, SQ_POST)) { + do_error("Post error"); + $complete_post=false; + } + + sqgetGlobalVar('filter_where', $filter_where, SQ_POST); + if (!sqgetGlobalVar('filter_where', $filter_where, SQ_POST)) { + do_error("Post error"); + $complete_post=false; + } + + sqgetGlobalVar('filter_folder', $filter_folder, SQ_POST); + if (!sqgetGlobalVar('filter_folder', $filter_folder, SQ_POST)) { + do_error("Post error"); + $complete_post=false; + } + + if ($complete_post) { + $filter_what = str_replace(',', ' ', $filter_what); + $filter_what = str_replace("\\\\", "\\", $filter_what); + $filter_what = str_replace("\\\"", '"', $filter_what); + $filter_what = str_replace('"', '"', $filter_what); + + if (($filter_where == 'Header') && (strchr($filter_what,':') == '')) { + do_error(_("WARNING! Header filters should be of the format "Header: value"")); + $action = 'edit'; + } + setPref($data_dir, $username, 'filter'.$theid, $filter_where.','.$filter_what.','.$filter_folder); + $filters[$theid]['where'] = $filter_where; + $filters[$theid]['what'] = $filter_what; + $filters[$theid]['folder'] = $filter_folder; + } +} elseif (isset($action) && $action == 'delete') { remove_filter($theid); - } elseif (isset($action) && $action == 'move_up') { +} elseif (isset($action) && $action == 'move_up') { filter_swap($theid, $theid - 1); - } elseif (isset($action) && $action == 'move_down') { +} elseif (isset($action) && $action == 'move_down') { filter_swap($theid, $theid + 1); - } elseif (isset($_POST['user_submit'])) { - setPref($data_dir, $username, 'filters_user_scan', $_POST['filters_user_scan_set']); - echo '
'._("Saved Scan type")."
\n"; - } +} elseif (sqgetGlobalVar('user_submit',$user_submit,SQ_POST)) { + sqgetGlobalVar('filters_user_scan_set',$filters_user_scan_set,SQ_POST); + setPref($data_dir, $username, 'filters_user_scan', $filters_user_scan_set); + echo '
'._("Saved Scan type")."
\n"; +} $filters = load_filters(); $filters_user_scan = getPref($data_dir, $username, 'filters_user_scan'); @@ -98,38 +111,39 @@ sqgetGlobalVar('action', $action, SQ_GET); echo html_tag( 'table', html_tag( 'tr', html_tag( 'td', - '
' . _("Options") . ' - ' . _("Message Filtering") . '
' , - 'left', $color[0] ) - ) , - 'center', '', 'width="95%" border="0" cellpadding="2" cellspacing="0"' ) . - - '
'. + '
' . _("Options") . ' - ' . _("Message Filtering") . '
' , + 'left', $color[0] + ) + ), + 'center', '', 'width="95%" border="0" cellpadding="2" cellspacing="0"' + ) . + '
'. '
'. html_tag( 'table', '', '', '', 'border="0" cellpadding="2" cellspacing="0"' ) . html_tag( 'tr' ) . - html_tag( 'th', _("What to Scan:"), 'right', '', 'nowrap' ) . + html_tag( 'th', _("What to Scan:"), 'right', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', '', 'left' ) . ''. ''. - html_tag( 'td', '', 'left' ) . + html_tag( 'td', '', 'left' ) . ''. '
'. '
'. html_tag( 'div', '[' . _("New") . '] - [' . _("Done") . ']' , - 'center' ) . '
'; + 'center' ) . '
'; if (isset($action) && ($action == 'add' || $action == 'edit')) { @@ -140,32 +154,32 @@ sqgetGlobalVar('action', $action, SQ_GET); $theid = count($filters); } echo html_tag( 'div', '', 'center' ) . - '
'. + ''. html_tag( 'table', '', '', '', 'border="0" cellpadding="2" cellspacing="0"' ) . html_tag( 'tr' ) . html_tag( 'td', _("Match:"), 'left' ) . html_tag( 'td', '', 'left' ) . - ''; $L = isset($filters[$theid]['where']); - $sel = (($L && $filters[$theid]['where'] == 'From')?'selected':''); - echo "'; + $sel = (($L && $filters[$theid]['where'] == 'From')?' selected="selected"':''); + echo "'; - $sel = (($L && $filters[$theid]['where'] == 'To')?'selected':''); - echo "'; + $sel = (($L && $filters[$theid]['where'] == 'To')?' selected="selected"':''); + echo "'; - $sel = (($L && $filters[$theid]['where'] == 'Cc')?'selected':''); - echo "'; + $sel = (($L && $filters[$theid]['where'] == 'Cc')?' selected="selected"':''); + echo "'; - $sel = (($L && $filters[$theid]['where'] == 'To or Cc')?'selected':''); - echo "'; + $sel = (($L && $filters[$theid]['where'] == 'To or Cc')?' selected="selected"':''); + echo "'; - $sel = (($L && $filters[$theid]['where'] == 'Subject')?'selected':''); - echo "'; + $sel = (($L && $filters[$theid]['where'] == 'Subject')?' selected="selected"':''); + echo "'; - $sel = (($L && $filters[$theid]['where'] == 'Header')?'selected':''); - echo "'; + $sel = (($L && $filters[$theid]['where'] == 'Header')?' selected="selected"':''); + echo "'; echo ''. ''. @@ -173,18 +187,18 @@ sqgetGlobalVar('action', $action, SQ_GET); html_tag( 'tr' ) . html_tag( 'td', _("Contains:"), 'right' ) . html_tag( 'td', '', 'left' ) . - ''. + echo '" />'. ''. ''. html_tag( 'tr' ) . html_tag( 'td', _("Move to:"), 'left' ) . html_tag( 'td', '', 'left' ) . ''. - ''; $selected = 0; if ( isset($filters[$theid]['folder']) ) $selected = array(strtolower($filters[$theid]['folder'])); @@ -194,14 +208,14 @@ sqgetGlobalVar('action', $action, SQ_GET); ''. ''. ''. - ''. - "". + '\n". + addHidden('theid', $theid). ''. ''; } - echo html_tag( 'table', '', 'center', '', 'border="0" cellpadding="3" cellspacing="0"' ); + echo html_tag( 'table', '', 'center', '', 'border="0" cellpadding="3" cellspacing="0"' ); for ($i=0, $num = count($filters); $i < $num; $i++) { @@ -210,29 +224,34 @@ sqgetGlobalVar('action', $action, SQ_GET); echo html_tag( 'tr', '', '', $clr ) . html_tag( 'td', '' . - "[" . _("Edit") . ']'. + "[" . _("Edit") . ']'. '' , 'left' ) . html_tag( 'td', '' . - "[" . _("Delete") . ']'. + "[" . _("Delete") . ']'. '' , - 'left' ) . - html_tag( 'td', '', 'center' ) . '['; + 'left' ); - if (isset($filters[$i + 1])) { - echo "" . _("Down") . ''; + if ($num > 1) { + echo html_tag( 'td', '', 'center' ) . '['; + if (isset($filters[$i + 1])) { + echo "" . _("Down") . ''; + if ($i > 0) { + echo ' | '; + } + } if ($i > 0) { - echo ' | '; + echo "" . _("Up") . ''; } + echo ']'; } - if ($i > 0) { - echo "" . _("Up") . ''; - } - echo ']'. - html_tag( 'td', '-', 'left' ) . - html_tag( 'td', '', 'left' ); - printf( _("If %s contains %s then move to %s"), $filters[$i]['where'], $filters[$i]['what'], $fdr ); + echo html_tag( 'td', '-', 'left' ) . + html_tag( 'td', '', 'left' ); + printf( _("If %s contains %s then move to %s"), + ''.$filters[$i]['where'].'', + ''.$filters[$i]['what'].'', + ''.imap_utf7_decode_local($fdr).''); echo ''; }