'._("Saved Scan type")."\n";
}
$filters = load_filters();
$filters_user_scan = getPref($data_dir, $username, 'filters_user_scan');
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"'
) .
'
'.
html_tag( 'div', '[' . _("New") .
'] - [' . _("Done") . ']' ,
'center' ) . '
';
if (isset($action) && ($action == 'add' || $action == 'edit')) {
$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
$boxes = sqimap_mailbox_list($imapConnection);
for ($a = 0, $cnt = count($boxes); $a < $cnt; $a++) {
if (strtolower($boxes[$a]['formatted']) == 'inbox') {
unset($boxes[$a]);
}
}
sqimap_logout($imapConnection);
if ( !isset($theid) ) {
$theid = count($filters);
}
echo html_tag( 'div', '', 'center' ) .
''.
'';
}
echo html_tag( 'table', '', 'center', '', 'border="0" cellpadding="3" cellspacing="0"' );
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") . ']'.
'' ,
'left' ) .
html_tag( 'td',
'' .
"[" . _("Delete") . ']'.
'' ,
'left' );
if ($num > 1) {
echo html_tag( 'td', '', 'center' ) . '[';
if (isset($filters[$i + 1])) {
echo "" . _("Down") . '';
if ($i > 0) {
echo ' | ';
}
}
if ($i > 0) {
echo "" . _("Up") . '';
}
echo ']';
}
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 '';
}
echo ''.
html_tag( 'table',
html_tag( 'tr',
html_tag( 'td', ' ', 'left' )
) ,
'center', '', 'width="80%" border="0" cellpadding="2" cellspacing="0"' );
echo '