diff options
-rw-r--r-- | index.html | 45 |
1 files changed, 25 insertions, 20 deletions
@@ -1,27 +1,34 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> +<meta http-equiv="Content-type" + content="text/html;charset=us-ascii"> <title>archivemail - a tool for archiving and compressing old email</title> <link title="archivemail style" rel=stylesheet href="style.css" type="text/css"> +<style type="text/css"> +/*<![CDATA[*/ +span.mail {text-decoration: underline;} +/*]]>*/ +</style> </head> <body> -<center> <h1>archivemail</h1> -</center> -<p> <h2>Description</h2> +<p> <strong>archivemail</strong> is a tool written in <a href="http://www.python.org/">Python</a> for archiving and compressing old email in mailboxes. It can move messages older than the specified number of days to a separate <a href="http://www.qmail.org/man/man5/mbox.html">mbox format</a> mailbox that is compressed with <a href="http://www.gzip.org/">gzip</a>, or optionally just delete old email. -<p> <h2>Why should I use it?</h2> +<p> Maybe some of your mailboxes are quite large (eg, over 10,000 messages) and they are taking a while to load in your mail reader. Perhaps they are taking up too much space on your disk. Archiving old messages to a separate, @@ -72,7 +79,6 @@ If you would prefer to just delete old email rather than archive it, <li>IMAPS/SSL support. <li>Arbitrary IMAP filter strings can added on the commandline. </ul> -<p> <h2>Documentation</h2> <ul> @@ -82,7 +88,6 @@ If you would prefer to just delete old email rather than archive it, <li> <a href="TODO">TODO</a> list <li> <a href="RELNOTES">Release notes</a> for the latest version </ul> -<p> <h2>Articles</h2> @@ -92,15 +97,15 @@ If you would prefer to just delete old email rather than archive it, about archivemail for <a href="http://www.muttfr.org/">muttfr.org</a>, a French website about <a href="http://www.mutt.org/">mutt</a>. </ul> -<p> <h2>License</h2> +<p> This software is licensed under the <a href="http://www.gnu.org/licenses/licenses.html#GPL">GNU GPL</a>. See the file <a href="COPYING">COPYING</a> for more information. -<p> <h2>Requirements</h2> +<p> <strong>archivemail</strong> requires python version 2.3. It also uses some optional python modules, but these should be pretty much standard; if you get an ImportError nonetheless, please report it, thanks. (For contact addresses see @@ -112,6 +117,7 @@ Python is available from <a href="http://www.python.org/">http://www.python.org/</a> <h2>Download</h2> +<p> <strong>archivemail</strong> can be downloaded from the <a href="http://sourceforge.net/project/showfiles.php?group_id=49630">archivemail download area on Sourceforge</a> or via @@ -122,7 +128,6 @@ There should soon be binary RPM packages at service</a> for SUSE Linux and Fedora Core 5. There is also a <a href="http://packages.debian.org/unstable/mail/archivemail.html">debian package</a>. -<p> <h2>Support</h2> <ul> @@ -132,24 +137,24 @@ package</a>. <li><a href="http://sourceforge.net/projects/archivemail/">Project page for archivemail</a> on Sourceforge. </ul> -<p> <h2>Credits</h2> -<strong>archivemail</strong> was written by Paul Rodger -<<u>paul</u> <em>at</em> <u>paulrodger</u> <em>dot</em> <u>com</u>> -<br /> -and is currently maintained by Peter Poeml <<u>poeml</u> <em>at</em> -<u>suse</u> <em>dot</em> <u>de</u>>, Nikolaus Schulz <<u>microschulz</u> -<em>at</em> <u>web</u> <em>dot</em> <u>de</u>> and Brandon Knitter. <p> +<strong>archivemail</strong> was written by Paul Rodger +<<span class="mail">paul <em>at</em> paulrodger <em>dot</em> +com</span>><br> +and is currently maintained by Peter Poeml <<span class="mail">poeml +<em>at</em> suse <em>dot</em> de</span>>, Nikolaus Schulz +<<span class="mail">microschulz <em>at</em> web <em>dot</em> +de</span>> and Brandon Knitter. <hr> <p> -<center> <!-- sourceforge logo start --> -<a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=49630&type=3" width="125" height="37" border="0" alt="SourceForge.net Logo"></a> +<a href="http://sourceforge.net"> + <img src="http://sourceforge.net/sflogo.php?group_id=49630&type=3" + width="125" height="37" alt="SourceForge.net Logo"> +</a> <!-- sourceforge logo end --> -</center> - </body> </html> |