[pkg-dspam-commits] r51 - trunk/htdocs

Matthijs Mohlmann active2-guest at costa.debian.org
Fri Nov 11 19:03:43 UTC 2005


Author: active2-guest
Date: Fri Nov 11 19:03:43 2005
New Revision: 51

Added:
   trunk/htdocs/style.css
Modified:
   trunk/htdocs/index.html
Log:
 * Split out the style sheet and the html
 * Introduced ourselves on the dspam packaging page
 * Added some documentation


Modified: trunk/htdocs/index.html
==============================================================================
--- trunk/htdocs/index.html	(original)
+++ trunk/htdocs/index.html	Fri Nov 11 19:03:43 2005
@@ -1,111 +1,68 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
     "http://www.w3.org/TR/html4/loose.dtd">
 <html>
-<head>
-  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-  <title>DSPAM for Debian</title>
-  <style type="text/css">
-  body { 
-    margin-left: 10%; 
-    margin-right: 10%; 
-    font-family: sans-serif;
-  }
-  h2,h3,h4,h5,h6 { margin-left: -3% }
-  pre {
-     color: green; font-weight: bold;
-     white-space: pre; font-family: "Courier New", monospace;
-  }
-  em { font-style: italic; font-weight: bold }
-  strong { text-transform: uppercase; font-weight: bold }
-  .navbar {text-align: center }</style>
-</head>
-
-<body bgcolor="white" text="black">
-
-
-<p class="navbar"><br>
-<a href="#intro">Introduction</a> | <a href="#development">Development</a></p>
-
-
-<h2>pkg-dspam</h2><h2>Debianizing the DSPAM Email Spam Filter</h2>
-
-<h3><a name="intro">Introduction</a></h3>
-
-<p><a href="http://www.nuclearelephant.com/projects/dspam/">DSPAM</a> is a scalable, statistical spam filter.  Quoting Federico Sevilla III, who submitted the original RFP:
-<blockquote>
-"DSPAM (as in De-Spam) is an open-source project to create a new kind of
-anti-spam mechanism, and is currently effective as both a server-side
-agent for UNIX email servers and a developer's library for mail clients,
-other anti-spam tools, and similar projects requiring drop-in spam
-filtering.
-<br><br>
-The DSPAM agent masquerades as the email server's local delivery agent
-and filters/learns spams using an advanced Bayesian statistical approach
-(based on Baye's theorem of combined probabilities) which provides an
-administratively maintenance-free, easy-learning Anti-Spam service
-custom tailored to each individual user's behavior. Advanced because on
-top of standard Bayesian filtering is also incorporated the use of
-Chained Tokens, de-obfuscation, and other enhancements. DSPAM works
-great with Sendmail and Exim, and should work well with any other MTA
-that supports an external local delivery agent (postfix, qmail, etc.)"
-</blockquote>
-<br>
-False negatives are rejected by the user by using the mail client to 
-forward them to the user's "spam" mailbox.  False positives 
-can be reviewed using a web browser (
-
-<a href="http://www.nuclearelephant.com/projects/dspam/screenshots/dspam2.png">
-screenshot</a>
-
-), and these actions are used by DSPAM to train itself.</p>
-
-<p>There has been quite a bit of interest lately in packaging this application
-for Debian.  Discussion to date has been carried out on 
-
-<a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195948">
-Debian Bug # 195948</a>
-
-.  The work accomplished so far has been assembled from the patches sent
-to 195948, tagged to reflect the submissions, and added to the 
-
-Alioth pkg-dspam
-<a href="http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/dspam/?cvsroot=pkg-dspam">
-CVS</a>
-
-.</p>
-
-<h5>Initial Contributors</h5>
-<ul>
-<li>The first diff was contributed by Roger Keays on 15 June 2004.  It is 
-tagged as <b>KEAYS</b>.
-<li>The second diff was contributed by Tommi Virtanen on 20 August 2004.  Virtanen
-is a Debian Developer.  He updated and polished the Keays diff and is apparently using the 
-resulting .deb in production.  He used exim and db4. The CVS tag is<br>
-<b>r3_0_0_virtanen</b>.
-<li>The third diff was the culmination of work done by Tim Small between
-12 Oct and 30 Nov 2004.  Small switched to mysql and worked on configuration
-issues (postinst and postrm).  The CVS tag is <br><b>r3_2_3-2_small</b>.
-<li>The third diff is from Jesus Climent, 16 December 2004.
-He was able to take advantage of the upstream change at release 3.2 from configuration
-at build time to run time configuration.
-
-Climent broke up the package to support mysql, postgresql, sqlite, and db4 by
-moving from a CDBS implementation to one based on a makefile.
-Climent also eliminated the .../cgi/*.cgi.in files which were not accepted upstream
-and removed the postinst/postrm files (They are in .../debian/Attic).
-The CVS tag is <br><b>r3_2_3-3_climent</b>.
-</ul>
-
-<h3><a name="development">Development</a></h3>
-Development is taking place at debian.org's Alioth site:
-<a href="http://alioth.debian.org/projects/pkg-dspam/">
-http://alioth.debian.org/projects/pkg-dspam/</a>
-
-<p>Mail List: <a href="http://lists.alioth.debian.org/mailman/listinfo/pkg-dspam-misc">
-pkg-dspam-misc at alioth.debian.org</a>
-
-<p>SVN: <a href="svn://svn.debian.org/pkg-dspam">pkg-dspam</a>
-
-<br><br>
-</body>
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+    <title>DSPAM for Debian</title>
+    <link rel='stylesheet' type='text/css' href='style.css' />
+  </head>
+
+  <body>
+
+    <p class="navbar"><br>
+      <a href="#intro">Introduction</a> | <a href="#development">Development</a> | <a href="#documentation">Documentation</a>
+    </p>
+
+    <h2>pkg-dspam</h2><h2>Debianizing the DSPAM Email Spam Filter</h2>
+
+    <h3><a name="intro">Introduction</a></h3>
+
+    <p>
+      <a href="http://www.nuclearelephant.com/projects/dspam/">DSPAM</a> is a scalable, statistical spam filter.  Quoting Federico Sevilla III, who submitted the original RFP:
+    </p>
+
+    <blockquote>
+      "DSPAM (as in De-Spam) is an open-source project to create a new kind of anti-spam mechanism, and is currently effective as both a server-side agent for UNIX email servers and a developer's library for mail clients, other anti-spam tools, and similar projects requiring drop-in spam filtering.
+      <br><br>
+      The DSPAM agent masquerades as the email server's local delivery agent and filters/learns spams using an advanced Bayesian statistical approach (based on Baye's theorem of combined probabilities) which provides an administratively maintenance-free, easy-learning Anti-Spam service custom tailored to each individual user's behavior. Advanced because on top of standard Bayesian filtering is also incorporated the use of Chained Tokens, de-obfuscation, and other enhancements. DSPAM works great with Sendmail and Exim, and should work well with any other MTA that supports an external local delivery agent (postfix, qmail, etc.)"
+    </blockquote>
+    <br>
+
+    <p>False negatives are rejected by the user by using the mail client to forward them to the user's "spam" mailbox.  False positives can be reviewed using a web browser ( <a href="http://www.nuclearelephant.com/projects/dspam/screenshots/dspam2.png">screenshot</a> ), and these actions are used by DSPAM to train itself.</p>
+
+    <p>There has been quite a bit of interest lately in packaging this application for Debian.  Discussion to date has been carried out on <a href="http://bugs.debian.org/195948">#195948</a>. The work accomplished so far has been assembled from the patches sent to <a href="http://bugs.debian.org/195948">#195948</a>, tagged to reflect the submissions, and added to the Alioth pkg-dspam <a href="http://cvs.alioth.debian.org/cgi-bin/cvsweb.cgi/dspam/?cvsroot=pkg-dspam">CVS (obsoleted)</a>.</p>
+
+    <h3><a name="development">Development team</a></h3>
+    <h4>Introduction</h4>
+    We have now a maintainer team for dspam and we would like to introduce ourselves:
+    <ul>
+      <li><a href="mailto:aurelien.labrosse ( at ) free.fr">Aurelien Labrosse</a>
+      <li><a href="mailto:matthijs ( at ) cacholong.nl">Matthijs Mohlmann</a>
+      <li><a href="mailto:kbk ( at ) shore.net">Kurt B. Kaiser</a>
+      <li><a href="mailto:jltallon ( at ) adv-solutions.net">Jose Luis Tallon</a>
+      <li><a href="mailto:rudolf ( at ) faveve.uni-stuttgart.de">Rudolf Weber</a>
+      <li><a href="mailto:haas ( at ) debian.org">Christoph Haas</a>
+      <li><a href="mailto:mooch ( at ) debian.org">Jesus Climent</a>
+    </ul>
+
+    We are discussing our changes at <a href="mailto:pkg-dspam-misc at alioth.debian.org">pkg-dspam-misc</a>, if you want to participate in the discussions please join the mailinglist. If you have questions about dspam or that have to do with the packaging of dspam in debian, please ask them there.
+
+    We are moved to subversion and you can find the project <a href="http://svn.debian.org/wsvn/pkg-dspam">here</a>. Most of the changes from the cvs repository are merged with svn and the cvs repository is now obsolete.
+
+    <h4>Initial Contributors</h4>
+    <ul>
+      <li>The first diff was contributed by Roger Keays on 15 June 2004. It is tagged as <b>KEAYS</b>.
+      <li>The second diff was contributed by Tommi Virtanen on 20 August 2004. Virtanen is a Debian Developer. He updated and polished the Keays diff and is apparently using the resulting .deb in production. He used exim and db4. The CVS tag is <b>r3_0_0_virtanen</b>.
+      <li>The third diff was the culmination of work done by Tim Small between 12 Oct and 30 Nov 2004. Small switched to mysql and worked on configuration issues (postinst and postrm). The CVS tag is <br><b>r3_2_3-2_small</b>.
+      <li>The third diff is from Jesus Climent, 16 December 2004. He was able to take advantage of the upstream change at release 3.2 from configuration at build time to run time configuration. Climent broke up the package to support mysql, postgresql, sqlite, and db4 by moving from a CDBS implementation to one based on a makefile. Climent also eliminated the .../cgi/*.cgi.in files which were not accepted upstream and removed the postinst/postrm files (They are in .../debian/Attic). The CVS tag is <br><b>r3_2_3-3_climent</b>.
+    </ul>
+
+    <h4>File bugs ?</h4>
+      You are sure you found a bug ? Well, mostly it's a feature but if you consider it as a bug...
+    <br />
+    <br />
+      Please file the bugs to the BTS using the tool reportbug and be as verbose as possible. Please see <a href="http://landfill.bugzilla.org/bugzilla-tip/page.cgi?id=bug-writing.html">Filing bugs</a>
+    <h3><a name="documentation">Documentation</a></h3>
+      Good documentation can be found at: <a href="http://dspamwiki.woozle.org/">DSPAM</a>
+  </body>
 </html>

Added: trunk/htdocs/style.css
==============================================================================
--- (empty file)
+++ trunk/htdocs/style.css	Fri Nov 11 19:03:43 2005
@@ -0,0 +1,33 @@
+body { 
+  font-family: sans-serif;
+  margin-left: 10%;
+  margin-right: 10%;
+  text: black;
+  background: white;
+}
+
+h2,h3,h4,h5,h6 {
+  margin-left: -3%
+}
+
+pre {
+  color: green;
+  font-weight: bold;
+  white-space: pre;
+  font-family: "Courier New", monospace;
+}
+
+em {
+  font-style: italic;
+  font-weight: bold
+}
+
+strong {
+  text-transform: uppercase;
+  font-weight: bold
+}
+
+.navbar {
+  text-align: center
+}
+



More information about the Pkg-dspam-commits mailing list