I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 945d455f authored by zzz's avatar zzz
Browse files

* SusiMail:

   - Different colors for new mail and spam
parent c8f8f6ff
No related branches found
No related tags found
No related merge requests found
...@@ -69,6 +69,7 @@ class Mail { ...@@ -69,6 +69,7 @@ class Mail {
private ReadBuffer header, body; private ReadBuffer header, body;
private MailPart part; private MailPart part;
String[] to, cc; // addresses only, enclosed by <> String[] to, cc; // addresses only, enclosed by <>
private boolean isNew, isSpam;
public String error; public String error;
...@@ -141,6 +142,18 @@ class Mail { ...@@ -141,6 +142,18 @@ class Mail {
this.size = size; this.size = size;
} }
public boolean isSpam() {
return isSpam;
}
public boolean isNew() {
return isNew;
}
public void setNew(boolean isNew) {
this.isNew = isNew;
}
/** /**
* *
* @param address E-mail address to be validated * @param address E-mail address to be validated
...@@ -332,6 +345,9 @@ class Mail { ...@@ -332,6 +345,9 @@ class Mail {
ArrayList<String> list = new ArrayList<String>(); ArrayList<String> list = new ArrayList<String>();
getRecipientsFromList( list, line.substring( 3 ).trim(), true ); getRecipientsFromList( list, line.substring( 3 ).trim(), true );
cc = list.toArray(new String[list.size()]); cc = list.toArray(new String[list.size()]);
} else if(line.equals( "X-Spam-Flag: YES" )) {
// TODO trust.spam.headers config
isSpam = true;
} }
} }
} }
......
...@@ -227,6 +227,8 @@ class MailCache { ...@@ -227,6 +227,8 @@ class MailCache {
ReadBuffer rb = pr.buf; ReadBuffer rb = pr.buf;
if (rb != null) { if (rb != null) {
Mail mail = pr.mail; Mail mail = pr.mail;
if (!mail.hasHeader())
mail.setNew(true);
if (pr.getHeaderOnly()) { if (pr.getHeaderOnly()) {
mail.setHeader(rb); mail.setHeader(rb);
} else { } else {
......
...@@ -1916,9 +1916,18 @@ public class WebMail extends HttpServlet ...@@ -1916,9 +1916,18 @@ public class WebMail extends HttpServlet
for( Iterator<String> it = sessionObject.folder.currentPageIterator(); it != null && it.hasNext(); ) { for( Iterator<String> it = sessionObject.folder.currentPageIterator(); it != null && it.hasNext(); ) {
String uidl = it.next(); String uidl = it.next();
Mail mail = sessionObject.mailCache.getMail( uidl, MailCache.FETCH_HEADER ); Mail mail = sessionObject.mailCache.getMail( uidl, MailCache.FETCH_HEADER );
if (mail == null) if (mail == null) {
i++;
continue; continue;
String link = "<a href=\"" + myself + "?" + SHOW + "=" + i + "\">"; }
String type;
if (mail.isSpam())
type = "linkspam";
else if (mail.isNew())
type = "linknew";
else
type = "linkold";
String link = "<a href=\"" + myself + "?" + SHOW + "=" + i + "\" class=\"" + type + "\">";
boolean idChecked = false; boolean idChecked = false;
String checkId = sessionObject.pageChanged ? null : request.getParameter( "check" + i ); String checkId = sessionObject.pageChanged ? null : request.getParameter( "check" + i );
...@@ -2001,6 +2010,7 @@ public class WebMail extends HttpServlet ...@@ -2001,6 +2010,7 @@ public class WebMail extends HttpServlet
":</td><td align=\"left\">" + mail.quotedDate + "</td></tr>\n" + ":</td><td align=\"left\">" + mail.quotedDate + "</td></tr>\n" +
"<tr><td colspan=\"2\" align=\"center\"><hr></td></tr>" ); "<tr><td colspan=\"2\" align=\"center\"><hr></td></tr>" );
if( mail.hasPart()) { if( mail.hasPart()) {
mail.setNew(false);
showPart( out, mail.getPart(), 0, SHOW_HTML ); showPart( out, mail.getPart(), 0, SHOW_HTML );
} }
else { else {
......
...@@ -87,6 +87,18 @@ a { ...@@ -87,6 +87,18 @@ a {
font-weight: bold; font-weight: bold;
} }
a.linkspam {
color:#927B40;
}
a.linknew {
color:#327B40;
}
a.linkold {
color:#327BBF;
}
a:hover { a:hover {
text-decoration:underline; text-decoration:underline;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment