X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Ffilters%2Foptions.php;h=5706aad5fec39f10dc561981290c6a0d06546ede;hp=5785f7086d259678d9bb25f99ca81cec06aa4175;hb=2714d4ff9d44c2f27e413f49062247dc25558877;hpb=08185f2a7631c3a12cb1ac085fec3be471b56b00 diff --git a/plugins/filters/options.php b/plugins/filters/options.php index 5785f708..5706aad5 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; +require_once(SM_PATH . 'functions/imap_mailbox.php'); +require_once(SM_PATH . 'include/load_prefs.php'); +require_once(SM_PATH . 'functions/forms.php'); +require_once(SM_PATH . 'plugins/filters/filters.php'); + +global $AllowSpamFilters; + +displayPageHeader($color, 'None'); + +/* get globals */ +sqgetGlobalVar('username', $username, SQ_SESSION); +sqgetGlobalVar('key', $key, SQ_COOKIE); +sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION); +sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); + +sqgetGlobalVar('theid', $theid); +sqgetGlobalVar('action', $action, SQ_GET); + +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') { filter_swap($theid, $theid - 1); } elseif (isset($action) && $action == 'move_down') { filter_swap($theid, $theid + 1); - } elseif (isset($user_submit)) { - echo "
"._("Saved Scan type")."
\n"; - setPref($data_dir, $username, 'filters_user_scan', $filters_user_scan_set); + } 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(); @@ -75,7 +116,7 @@ require_once(SM_PATH . 'src/load_prefs.php'); ) , 'center', '', 'width="95%" border="0" cellpadding="2" cellspacing="0"' ) . - '
'. + '
'. '
'. html_tag( 'table', '', '', '', 'border="0" cellpadding="2" cellspacing="0"' ) . html_tag( 'tr' ) . @@ -94,16 +135,17 @@ require_once(SM_PATH . 'src/load_prefs.php'); echo '>' . _("Only unread messages") . '' . ''. ''. - html_tag( 'td', '', 'left' ) . + html_tag( 'td', '', 'left' ) . ''. '
'. '
'. html_tag( 'div', '[' . _("New") . - '] - [' . _("Done") . ']' , - 'center' ) . '
'; + '] - [' . _("Done") . ']' , + 'center' ) . '
'; if (isset($action) && ($action == 'add' || $action == 'edit')) { + $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); $boxes = sqimap_mailbox_list($imapConnection); sqimap_logout($imapConnection); @@ -111,32 +153,32 @@ require_once(SM_PATH . 'src/load_prefs.php'); $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 "'; + echo "'; $sel = (($L && $filters[$theid]['where'] == 'To')?'selected':''); - echo "'; + echo "'; $sel = (($L && $filters[$theid]['where'] == 'Cc')?'selected':''); - echo "'; + echo "'; $sel = (($L && $filters[$theid]['where'] == 'To or Cc')?'selected':''); - echo "'; + echo "'; $sel = (($L && $filters[$theid]['where'] == 'Subject')?'selected':''); - echo "'; + echo "'; $sel = (($L && $filters[$theid]['where'] == 'Header')?'selected':''); - echo "'; + echo "'; echo ''. ''. @@ -144,37 +186,29 @@ require_once(SM_PATH . 'src/load_prefs.php'); 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'])); + echo sqimap_mailbox_option_list(0, $selected, 0, $boxes); echo ''. ''. ''. ''. ''. - ''. - "". + '\n". + addHidden('theid', $theid). '
'. ''; @@ -182,43 +216,47 @@ require_once(SM_PATH . 'src/load_prefs.php'); echo html_tag( 'table', '', 'center', '', 'border="0" cellpadding="3" cellspacing="0"' ); - for ($i=0; $i < count($filters); $i++) { + for ($i=0, $num = count($filters); $i < $num; $i++) { $clr = (($i % 2)?$color[0]:$color[9]); $fdr = ($folder_prefix)?str_replace($folder_prefix, "", $filters[$i]["folder"]):$filters[$i]["folder"]; echo html_tag( 'tr', '', '', $clr ) . html_tag( 'td', '' . - "[" . _("Edit") . ']'. + "[" . _("Edit") . ']'. '' , 'left' ) . html_tag( 'td', '' . - "[" . _("Delete") . ']'. + "[" . _("Delete") . ']'. '' , 'left' ) . html_tag( 'td', '', 'center' ) . '['; if (isset($filters[$i + 1])) { - echo "" . _("Down") . ''; + echo "" . _("Down") . ''; if ($i > 0) { echo ' | '; } } if ($i > 0) { - echo "" . _("Up") . ''; + 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 ); + printf( _("If %s contains %s then move to %s"), + ''.$filters[$i]['where'].'', + ''.$filters[$i]['what'].'', + ''.imap_utf7_decode_local($fdr).''); echo ''; } echo ''. html_tag( 'table', html_tag( 'tr', - html_tag( 'td', ' ', 'left' ) + html_tag( 'td', ' ', 'left' ) ) , 'center', '', 'width="80%" border="0" cellpadding="2" cellspacing="0"' ); + echo ''; ?>