Gentoo Archives: gentoo-doc-cvs

From: Josh Saddler <nightmorph@××××××××××××.org>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] cvs commit: mailfilter-guide.xml
Date: Wed, 25 Apr 2007 07:26:54
Message-Id: E1Hgbtp-0006vF-VG@stork.gentoo.org
1 nightmorph 07/04/25 07:26:49
2
3 Modified: mailfilter-guide.xml
4 Log:
5 updated mailfilter guide with an index for spamassassin, bug 175317
6
7 Revision Changes Path
8 1.18 xml/htdocs/doc/en/mailfilter-guide.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml?rev=1.18&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml?rev=1.18&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml?r1=1.17&r2=1.18
13
14 Index: mailfilter-guide.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml,v
17 retrieving revision 1.17
18 retrieving revision 1.18
19 diff -u -r1.17 -r1.18
20 --- mailfilter-guide.xml 7 Jan 2007 18:06:34 -0000 1.17
21 +++ mailfilter-guide.xml 25 Apr 2007 07:26:49 -0000 1.18
22 @@ -1,6 +1,6 @@
23 <?xml version='1.0' encoding='utf-8'?>
24
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml,v 1.17 2007/01/07 18:06:34 nightmorph Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/mailfilter-guide.xml,v 1.18 2007/04/25 07:26:49 nightmorph Exp $ -->
27
28 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
29 <guide link="/doc/en/mailfilter-guide.xml">
30 @@ -23,8 +23,8 @@
31 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
32 <license/>
33
34 -<version>0.11</version>
35 -<date>2007-01-07</date>
36 +<version>0.12</version>
37 +<date>2007-04-25</date>
38
39 <chapter>
40 <title>Introduction</title>
41 @@ -1839,7 +1839,8 @@
42 Now that the database is created we'll create the necessary tables. You can cut
43 and paste the following into the mysql prompt:
44 </p>
45 - <pre caption="MySQL table layout">
46 +
47 +<pre caption="MySQL table layout">
48 CREATE TABLE bayes_expire (
49 id int(11) NOT NULL default '0',
50 runtime int(11) NOT NULL default '0',
51 @@ -1867,7 +1868,8 @@
52 spam_count int(11) NOT NULL default '0',
53 ham_count int(11) NOT NULL default '0',
54 atime int(11) NOT NULL default '0',
55 - PRIMARY KEY (id, token)
56 + PRIMARY KEY (id, token),
57 + INDEX (id, atime)
58 ) TYPE=MyISAM;
59
60 CREATE TABLE bayes_vars (
61
62
63
64 --
65 gentoo-doc-cvs@g.o mailing list