[Spambayes-checkins] website style.css,1.7,1.8 unix.ht,1.3,1.4

Tony Meyer anadelonbrin at users.sourceforge.net
Wed Aug 6 19:14:03 EDT 2003


Update of /cvsroot/spambayes/website
In directory sc8-pr-cvs1:/tmp/cvs-serv28153

Modified Files:
	style.css unix.ht 
Log Message:
Make links slightly more visible for those viewing without links underlined.

Flesh out the unix page a bit more based on a combination of a doc that I was
send as a contribution (some time ago) and the INTEGRATION.TXT file.  Note
that I don't use unix so I'm trusting the two of these to be right ;)

Index: style.css
===================================================================
RCS file: /cvsroot/spambayes/website/style.css,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** style.css	28 May 2003 19:41:31 -0000	1.7
--- style.css	7 Aug 2003 01:13:59 -0000	1.8
***************
*** 9,13 ****
  }
  
! A:link    		{ color: 	#645460; }
  A:visited 		{ color: 	#303030; }
  A:active  		{ color: 	#ff9933; }
--- 9,13 ----
  }
  
! A:link    		{ color: 	#8454A0; }
  A:visited 		{ color: 	#303030; }
  A:active  		{ color: 	#ff9933; }

Index: unix.ht
===================================================================
RCS file: /cvsroot/spambayes/website/unix.ht,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** unix.ht	29 Jul 2003 01:48:02 -0000	1.3
--- unix.ht	7 Aug 2003 01:14:00 -0000	1.4
***************
*** 20,27 ****
  local spool file (e.g. <code>/var/spool/mail</code>), you will probably find
  hammiefilter.py the easiest application to integrate into your mail
! environment.  Details are available in the <a
  href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/spambayes/spambayes/INTEGRATION.txt?rev=HEAD&content-type=text/plain">Hammie
! integration guide</a>. (XXX: More of what's there needs to be incorporated
! here.)</p>
  
  <h2>POP3</h2>
--- 20,53 ----
  local spool file (e.g. <code>/var/spool/mail</code>), you will probably find
  hammiefilter.py the easiest application to integrate into your mail
! environment.</p>
! <p>An example setup is as follows (thanks to Alister Forbes for contributing this):
! <ol>
! <li>Install spambayes with the usual <pre>setup.py install</pre></li>
! <li>Create the database that spambayes will use to test your incoming mail:
! <pre>/usr/local/bin/hammiefilter.py -d $HOME/.hammie.db -n</pre></li>
! <li>Train it on your existing mail. This is optional, but a good idea. -g is the flag for the known good mail, and -s is for known spam 
! <pre>/usr/local/bin/mboxtrain.py -d $HOME/.hammiedb -g $HOME/Mail/inbox -s $HOME/Mail/spam</pre></li>
! <li>Adding the following recipes to the top of your .procmailrc will get the spam and unsure stuff out of the way. Allowing everything else to be filtered as per your normal procmail recipes.
! <pre>
!       :0fw:hamlock
!       | /usr/local/bin/hammiefilter.py
! 
!       :0
!       * ^X-Spambayes-Classification: spam 
!       ${MAILDIR}/spam
!       
!       :0
!       * ^X-Spambayes-Classification: unsure
!       ${MAILDIR}/unsure
! </pre>
! </li>
! <li>For ongoing training, there is a handy little cronjob that will run at 2:21 am every morning, training the database with good mail from Inbox and spam from caughtspam. Just add the following to your crontab
! <pre>21 2 * * * /usr/local/bin/mboxtrain.py -d $HOME/.hammiedb -g $HOME/Mail/Inbox -s $HOME/Mail/spam</pre>
! </li>
! </ol>
! </p>
! <p>Additional details are available in the <a
  href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/spambayes/spambayes/INTEGRATION.txt?rev=HEAD&content-type=text/plain">Hammie
! integration guide</a>.</p>
  
  <h2>POP3</h2>





More information about the Spambayes-checkins mailing list