Version 0.5pre1 -- DEVELOPMENT
------------------------------
+- Added support for message highlighting
- Moved Address and Send buttons on Compose form for easier access
- Added Polish translation from Lukasz Klimek <casa@LO.Pila.PL>
+<html><body>
<a name="top"></a>
<h1>SquirrelMail IMAP functions</h1>
<?
<?
}
?>
+</body></html>
function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $startMessage) {
global $color, $msgs, $msort;
global $sent_folder;
+ global $message_highlight_list;
$msg = $msgs[$key];
if ($msg["FLAG_SEEN"] == false) { $bold = "<b>"; $bold_end = "</b>"; }
if ($mailbox == $sent_folder) { $italic = "<i>"; $italic_end = "</i>"; }
- echo " <td width=1% align=center><input type=checkbox name=\"msg[$t]\" value=".$msg["ID"]."></TD>\n";
- echo " <td width=30%>$italic$bold$flag$senderName$flag_end$bold_end$italic_end</td>\n";
- echo " <td nowrap width=1%><center>$bold$flag".$msg["DATE_STRING"]."$flag_end$bold_end</center></td>\n";
- if ($msg["FLAG_ANSWERED"] == true) echo " <td width=1%><b><small>A</small></b></td>";
- else echo " <td width=1%> </td>";
- echo " <td width=%>$bold<a href=\"read_body.php?mailbox=$urlMailbox&passed_id=".$msg["ID"]."&startMessage=$startMessage&show_more=0\">$flag$subject$flag_end</a>$bold_end</td>\n";
+ for ($i=0; $i < count($message_highlight_list); $i++) {
+ if (eregi($message_highlight_list[$i]["value"],$msg["FROM"])) {
+ $hlt_color = $message_highlight_list[$i]["color"];
+ continue;
+ }
+ }
+ if (!$hlt_color)
+ $hlt_color = $color[4];
+
+ echo " <td width=1% bgcolor=$hlt_color align=center><input type=checkbox name=\"msg[$t]\" value=".$msg["ID"]."></TD>\n";
+ echo " <td width=30% bgcolor=$hlt_color>$italic$bold$flag$senderName$flag_end$bold_end$italic_end</td>\n";
+ echo " <td nowrap width=1% bgcolor=$hlt_color><center>$bold$flag".$msg["DATE_STRING"]."$flag_end$bold_end</center></td>\n";
+ if ($msg["FLAG_ANSWERED"] == true) echo " <td bgcolor=$hlt_color width=1%><b><small>A</small></b></td>";
+ else echo " <td bgcolor=$hlt_color width=1%> </td>";
+ echo " <td bgcolor=$hlt_color width=%>$bold<a href=\"read_body.php?mailbox=$urlMailbox&passed_id=".$msg["ID"]."&startMessage=$startMessage&show_more=0\">$flag$subject$flag_end</a>$bold_end</td>\n";
echo "</tr>\n";
}
function showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color,$show_num, $use_cache) {
global $msgs, $msort;
global $sent_folder;
+ global $message_highlight_list;
if (!$use_cache) {
if ($numMessages >= 1) {
$user_language = en;
}
+ // highlightX comes in with the form: name,color,header,value
+ for ($i=0; $hlt = getPref($data_dir, $username, "highlight$i"); $i++) {
+ $ary = explode(",", $hlt);
+ $message_highlight_list[$i]["name"] = $ary[0];
+ $message_highlight_list[$i]["color"] = $ary[1];
+ $message_highlight_list[$i]["value"] = $ary[2];
+ }
?>
--- /dev/null
+<?php
+ session_start();
+
+ if (!isset($config_php))
+ include("../config/config.php");
+ if (!isset($strings_php))
+ include("../functions/strings.php");
+ if (!isset($page_header_php))
+ include("../functions/page_header.php");
+ if (!isset($i18n_php))
+ include("../functions/i18n.php");
+ include("../src/load_prefs.php");
+
+ displayPageHeader($color, "None");
+
+ // MESSAGE HIGHLIGHTING
+ echo "<br>\n";
+ echo "<center><b>" . _("Message Highlighting") . "</b></center><br>\n";
+
+
+ if ($action == "save") {
+ if (!$id) $id = 0;
+ setPref($data_dir, $username, "highlight$id", $name.",".$newcolor.",".$value);
+ echo "<a href=\"options.php\">saved</a>";
+ } else {
+ if (!isset($id)) $id = count($message_highlight_list);
+
+ echo "<form action=\"msg_highlight.php\">\n";
+ echo "<input type=\"hidden\" value=\"save\" name=\"action\">\n";
+ echo "<input type=\"hidden\" value=\"$id\" name=\"id\">\n";
+ echo "<table width=75% cellpadding=2 cellspacing=0 border=0>\n";
+ echo " <tr>\n";
+ echo " <td>\n";
+ echo _("Identifying name") . ":";
+ echo " </td>\n";
+ echo " <td>\n";
+ echo " <input type=\"text\" value=\"".$message_highlight_list[$id]["name"]."\" name=\"name\">";
+ echo " </td>\n";
+ echo " </tr>\n";
+ echo " <tr>\n";
+ echo " <td>\n";
+ echo _("Color") . ":";
+ echo " </td>\n";
+ echo " <td>\n";
+ echo " <input type=\"text\" value=\"".$message_highlight_list[$id]["color"]."\" name=\"newcolor\">";
+ echo " </td>\n";
+ echo " </tr>\n";
+ echo " <tr>\n";
+ echo " <td>\n";
+ echo _("Match") . ":";
+ echo " </td>\n";
+ echo " <td>\n";
+ echo " <input type=\"text\" value=\"".$message_highlight_list[$id]["value"]."\" name=\"value\">";
+ echo " </td>\n";
+ echo " </tr>\n";
+ echo "</table>\n";
+ echo "<center><input type=\"submit\" value=\"" . _("Submit") . "\"></center>\n";
+ echo "</form>\n";
+ }
+ echo "</BODY></HTML>";
+?>
echo "<BR>Signature:<BR><TEXTAREA NAME=signature_edit ROWS=5 COLS=\"$sig_size\">$signature</TEXTAREA><BR>";
echo "</CENTER>";
+ // MESSAGE HIGHLIGHTING
+ echo "<br>\n";
+ echo "<center><b>" . _("Message Highlighting") . "</b> - [<a href=\"msg_highlight.php?method=add\">" . _("New") . "</a>]</center><br>\n";
+ if (count($message_highlight_list) >= 1) {
+ echo "<table border=0 cellpadding=2 cellspacing=0 align=center width=100%>\n";
+ for ($i=0; $i < count($message_highlight_list); $i++) {
+ echo "<tr>\n";
+ echo " <td width=1% bgcolor=" . $color[4] . ">\n";
+ echo "<small>[<a href=\"msg_highlight.php?method=edit&id=$i\">" . _("Edit") . "</a>] ["._("Delete")."]</small>\n";
+ echo " </td>";
+ echo " <td bgcolor=" . $message_highlight_list[$i]["color"] . ">\n";
+ echo " " . $message_highlight_list[$i]["name"];
+ echo " </td>\n";
+ echo " <td bgcolor=" . $message_highlight_list[$i]["color"] . ">\n";
+ echo " " . $message_highlight_list[$i]["value"];
+ echo " </td>\n";
+ echo "</tr>\n";
+ }
+ echo "</table>\n";
+ } else {
+ echo "<center>" . _("No highlighting is defined") . "</center><br>\n";
+ }
+ echo "<br>\n";
// SUBMIT BUTTON
echo "<BR><CENTER><INPUT TYPE=SUBMIT VALUE=\"";