RSS to POP3 Changes Available

I've finally made my custom build of available here. I've yet to finish all the enhancements I had planned, but at least HTML-formatted messages work to my liking.

Wanted: Trained Chipmunk With Power Button Expertise

A city-wide power failure forced the site offline for a couple of hours, and both the server and the router require physical manipulation to power back up, so it took a bit longer than might be expected.

I'm now scouring pet shops for a trained Chipmunk to restore power to my boxes when I'm away.

CSS Serendipity

So how do you use CSS to format a table with both alternate-colored rows and a vertical selection/sorting bar?

Easy. With multiple (and combined) classes:

.sqltable { border: 1px solid #c0c0c0; padding: 0px; }
.sqlcell { border-top: 1px solid #c0c0c0; border-left: 1px solid #c0c0c0;}
.sqlheader a { font-size: 9pt; font-weight: bold; padding: 2px
 text-decoration: none; color: white; }
.sqlheader { text-align: center; background-color: #404080; color: white; }
.sqlheader.sqlsort { text-align: center; background-color: #404040; color: white;  }
.sqlcell { font-size: 8pt; padding: 1px; text-align: center;}
.sqlsort { font-weight: bold; color: white; background-color: #808080; }
.sqlsort.sqlalternate { font-weight: bold; color: white; background-color: #606080; }
.sqlalternate { background-color: #e0e0f0; }

sendmail Made Easy