danny 2002/08/30 08:04:32
Modified: src/xdocs FAQ.xml
src/xdocs/stylesheets project.xml
www architecture_v2_0.html changelog.html
code-standards.html commandsIMAP.html
configuration_v2_0.html contribute.html FAQ.html
index.html install.html license.html todo.html
usingJDBC_v2.0.html usingLDAP_v1_2.html
usingTLS_v1_2.html weare.html
Added: src/xdocs james_and_sendmail.xml
Log:
Added a new page outlining sendmail configuration changes needed to use James as a
universal relay for sendmail,
and links to the page.
Revision Changes Path
1.17 +57 -47 jakarta-james/src/xdocs/FAQ.xml
Index: FAQ.xml
===================================================================
RCS file: /home/cvs/jakarta-james/src/xdocs/FAQ.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- FAQ.xml 25 Aug 2002 17:51:27 -0000 1.16
+++ FAQ.xml 30 Aug 2002 15:04:29 -0000 1.17
@@ -45,11 +45,14 @@
<a href="#11">Why isn't my mailet making changes to a
MimeMessage?</a>
</li>
<li>
- <a href="#12">How to remove unneeded services like NNTP,
POP3?</a>
+ <a href="#12">How to remove unneeded services like NNTP, POP3?</a>
</li>
- <li>
- <a href="#13">How can I contribute to James?</a>
- </li>
+ <li>
+ <a href="#13">How can I contribute to James?</a>
+ </li>
+ <li>
+ <a href="#14">How can I make sendmail route local mail (or all
mail) through James on the same machine?</a>
+ </li>
</ul>
</p>
</section>
@@ -111,21 +114,21 @@
<a name="3"/>
<subsection name="I can send messages to James, but nobody is receiving
them. What do I do?">
<p>Check that you've added valid DNS servers to your James
installation. Email delivery requires the use of special mail related DNS information
(MX records), so James needs to explicitly be given DNS servers. Look at your
config.xml file for a <dnsserver> section and add one or more DNS servers.
Serge Knystautas</p>
- <p>Additionally, check the RemoteAddrNotInNetwork matcher
under<processor name="transport">. By default it looks like this:</p>
-<source>
-<mailet match="RemoteAddrNotInNetwork=127.0.0.1" class="ToProcessor">
- <processor> spam </processor>
+ <p>Additionally, check the RemoteAddrNotInNetwork matcher
under<processor name="transport">. By default it looks like this:</p>
+<source>
+<mailet match="RemoteAddrNotInNetwork=127.0.0.1" class="ToProcessor">
+ <processor> spam </processor>
</mailet>
-</source>
- <p>because most mail programs will use the external IP address (as
opposed to 127.0.0.1) when processing mail, you need to add your internal network
and/or your static IP address to this list. You may also use a DNS domain name in
this list. The resulting entry would look something like this:</p>
-<source>
-<mailet match="RemoteAddrNotInNetwork=127.0.0.1,192.168.1.*"
- class="ToProcessor">
- <processor> spam </processor>
-</mailet>
-</source>
+</source>
+ <p>because most mail programs will use the external IP address (as
opposed to 127.0.0.1) when processing mail, you need to add your internal network
and/or your static IP address to this list. You may also use a DNS domain name in
this list. The resulting entry would look something like this:</p>
+<source>
+<mailet match="RemoteAddrNotInNetwork=127.0.0.1,192.168.1.*"
+ class="ToProcessor">
+ <processor> spam </processor>
+</mailet>
+</source>
<p>This tells the processor that anything not in this address list
should go to the spam processor.</p>
- <p>Please note that if you wish to configure James to allow users to
send email from any domain or IP address you will need to disable this matcher. In
this situation you must use SMTP AUTH to ensure that your server does not act as an
open relay. For more on open relays, please see <a href="http://www.ordb.org">the
Open Relay Database</a>.</p>
+ <p>Please note that if you wish to configure James to allow users to
send email from any domain or IP address you will need to disable this matcher. In
this situation you must use SMTP AUTH to ensure that your server does not act as an
open relay. For more on open relays, please see <a href="http://www.ordb.org">the
Open Relay Database</a>.</p>
</subsection>
<a name="4"/>
<subsection name="I can send people messages via James, but nobody can
send me messages. What do I do?">
@@ -200,12 +203,12 @@
copy JavaService.exe %2\bin\James.exe > nul
%2\bin\James.exe -install JamesMailServer
- rem put the following command all on one line
- %1\jre\bin\%3\jvm.dll -Djava.ext.dirs=%2\lib
- -Djava.class.path=%CLASSPATH%;%2\bin\phoenix-loader.jar;
- %2\bin\phoenix-engine.jar
- -start org.apache.avalon.phoenix.launcher.Main
- -out %2\logs\stdout.log -err %2\logs\stderr.log
+ rem put the following command all on one line
+ %1\jre\bin\%3\jvm.dll -Djava.ext.dirs=%2\lib
+ -Djava.class.path=%CLASSPATH%;%2\bin\phoenix-loader.jar;
+ %2\bin\phoenix-engine.jar
+ -start org.apache.avalon.phoenix.launcher.Main
+ -out %2\logs\stdout.log -err %2\logs\stderr.log
goto eof
@@ -228,36 +231,43 @@
Serge Knystautas
</p>
</subsection>
- <a name="12"/>
- <subsection name="How to remove unneeded services like NNTP, POP3?">
- <p>The following information is based on James 2.0a3, but the
- upcoming 2.1 version should be similar.</p>
- <p>NNTP and other underlying services are called "blocks" in the
- Avalon Phoenix terminology. Blocks are specified in the
- assembly.xml file which is under the apps/james/conf directory in
- 2.0a3 and apps\james\SAR-INF in 2.1. Note: this file is created
- during the first startup of James.</p>
- <p>There are dependencies between the blocks, which you can read from
- the file. For example the SMTP Server block depends on the
- users-store block, so if you want SMTP then you cannot remove the
- users-store block even if you only want to relay messages.</p>
- <p>To remove the NNTP Server comment out the following blocks:
- NNTP server, NNTP Authentication Service, NNTP repository.
- To remove the POP3 Server comment out the POP3 Server block.</p>
- <p>If you remove a block it wont't be loaded next time you restart
- James. You must also remove all sections related to the removed
- blocks from the James configuration file - config.xml - otherwise
- you will get error messages, saying that there is no corresponding
- block.<br/>
- Hontvari Jozsef</p>
- </subsection>
+ <a name="12"/>
+ <subsection name="How to remove unneeded services like NNTP, POP3?">
+ <p>The following information is based on James 2.0a3, but the
+ upcoming 2.1 version should be similar.</p>
+ <p>NNTP and other underlying services are called "blocks" in the
+ Avalon Phoenix terminology. Blocks are specified in the
+ assembly.xml file which is under the apps/james/conf directory in
+ 2.0a3 and apps\james\SAR-INF in 2.1. Note: this file is created
+ during the first startup of James.</p>
+ <p>There are dependencies between the blocks, which you can read from
+ the file. For example the SMTP Server block depends on the
+ users-store block, so if you want SMTP then you cannot remove the
+ users-store block even if you only want to relay messages.</p>
+ <p>To remove the NNTP Server comment out the following blocks:
+ NNTP server, NNTP Authentication Service, NNTP repository.
+ To remove the POP3 Server comment out the POP3 Server block.</p>
+ <p>If you remove a block it wont't be loaded next time you restart
+ James. You must also remove all sections related to the removed
+ blocks from the James configuration file - config.xml - otherwise
+ you will get error messages, saying that there is no corresponding
+ block.<br/>
+ Hontvari Jozsef</p>
+ </subsection>
<a name="13"/>
<subsection name="How can I contribute to James">
<p>Read the "Contributors How To" <a href="contribute.html">here</a>
<br/>
Danny Angus
</p>
- </subsection>
+ </subsection>
+
+<subsection name="How can I make sendmail route local mail (or all mail) through
James on the same machine?">
+ <p>Read the "sendmail How To" <a href="james_and_sendmail.html">here</a>
+ <br/>
+ Danny Angus
+ </p>
+</subsection>
</section>
</body>
</document>
1.1 jakarta-james/src/xdocs/james_and_sendmail.xml
Index: james_and_sendmail.xml
===================================================================
<?xml version="1.0"?>
<document>
<properties>
<title>Routing mail from sendmail through James</title>
<author email="[EMAIL PROTECTED]">Danny Angus</author>
</properties>
<body>
<section name="The problem">
<p>
This document explains how to configure sendmail to route all mail generated by
/usr/sbin/sendmail or local mail on a host through James on the same host, including
mail to local addresses without @host.<br/>
All sendmail configuration file locations are for Redhat Linux 7.2, other
installations may have different locations.<br/>
<b>We take no responsibility for the quality of the information in this
document. </b><br/><b>You should back-up any configuration files *before* you alter
them.</b>
</p>
</section>
<section name="Solution">
<subsection name="Step 1: Stop sendmail from running as an SMTP daemon">
<p>
Ok so you want to use James for everything, including delivering mail from localhost
to local users.<br/>
Well the first step is to stop sendmail from starting up as the SMTP Daemon on port
25, otherwise it will route mail to itself and who knows what will happen then.<br/>
Open the sendmail configuration file <b>/etc/sysconfig/sendmail</b>
Change the line:<source>DAEMON=yes</source>into<source>DAEMON=no</source>
Restart sendmail with:<source>[root@apache root]# /etc/rc.d/init.d/sendmail
restart</source>This will make sendmail process its outgoing queue, but not listen on
port 25 for incoming mail.
</p>
</subsection>
<subsection name="Step 2: Set up sendmail to use relay">
<p>
Ok, so far so good, now you need to tell sendmail to relay everything, regardless of
its rules, through James. James will take the roles of "local relay" (destination for
all unqualified local addresses), "mail hub" (destination for all qualified local
addresses) and "smart relay" (destination for all other mail) for this instance of
sendmail, thereby catching everything.<br/>
So open <b>/etc/sendmail.cf</b> and..
<ul>
<li>Look for the line beginning <b>DS</b> make this line
<b>DSesmtp:localhost</b></li>
<li>Look for the line beginning <b>DR</b> make this line
<b>DResmtp:localhost</b></li>
<li>Look for the line beginning <b>DH</b> make this line
<b>DHesmtp:localhost</b></li>
</ul>
Now that wasn't too hard was it?<br/>
What we have done is to tell sendmail to use its "mailer" called <b>esmtp</b> to
relay mail using ESMTP to localhost for each role.<br/>
Of course no-one in their right mind would relay mail to localhost, because it would
loop forever right?
</p>
</subsection>
<subsection name="Step 3: Stop sendmail complaining about mail apparently looping
back">
<p>
The developers of sendmail have, wisely, built sendmail in such a way as to prevent,
by default, mail being sent by sendmail back to itself, this is done by making a quick
check on outgoing mail to see if its destination is our machine. If it is you'll see
this message <b><i>config error: mail loops back to me</i></b> when you try to send
mail.<br/>
But we *want* to relay mail to localhost, and because sendmail isn't receiving our
mail, James is, we won't be creating a loop. (make sure you've followed step one
though).<br/>
So open <b>/etc/sendmail.cf</b> again and go to the bottom of the file, start
scrolling upwards until you see the declaration of the esmtp mailer it'll look
something like this
<source>
Mesmtp, P=[IPC], F=mDFMuXa, S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP,
E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=TCP $h
</source>
You need to change it so its more like this: :-D
<source>
Mesmtp, P=[IPC], F=kmDFMuXa, S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP,
E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=TCP $h
</source>
But seriously, we've added a <b>k</b> to the "F=" list <b>F=mDFMuXa</b> becomes
<b>F=kmDFMuXa</b><br/>
And again, thats it, sendmail will now skip the loopback test on mail leaving
through the esmtp mailer.
</p>
<p>Now you have to make some tests.<br/>Try each of the following, replace names in
[] with names of the kind described.
<source>/[root@apache root]# mail -v [real-localusername]
[root@apache root]# mail -v [nonexistant-localusername]
[root@apache root]# mail -v [real-localusername]@localhost
[root@apache root]# mail -v [real-localusername]@[myhostname.mydomainname]
[root@apache root]# mail -v [real-username]@[real-remote-account]
</source>
Sendmail echoes each conversation to STDOUT so you can see what its trying to do
with each mail.<br/>
</p>
</subsection>
<subsection name="Step 4: If that wasn't enough James requires SMTP AUTH">
<p>
SMTP AUTH is a different Kettle of Fish.<br/>
The scenario is that you're using SMTP AUTH on James to restrict SMTP relaying to
authenticated users, allowing them to connect from any IP address but still not
letting James become an open relay for spam, cool.<br/>
However you now want to let sendmail relay through James, so you need to tell it how
to authenticate.<br/>
So open <b>/etc/sendmail.cf</b> <i>again</i> and this time..
<ul>
<li>Look for the line beginning <b>O AuthMechanisms=</b> If this line is commented
out with a leading <b>#</b>, remove the <b>#</b> then make sure LOGIN and PLAIN are at
the beginning of this line like this <b>O AuthMechanisms=LOGIN PLAIN GSSAPI
KERBEROS_V4 DIGEST-MD5 CRAM-MD5</b></li>
<li>Look for the line beginning <b>O DefaultAuthInfo=</b> If this line is commented
out with a leading <b>#</b>, remove the <b>#</b> then make this line <b>O
DefaultAuthInfo=/etc/mail/default-auth-info</b></li>
<li>Create a user account on James for sendmail to login as.</li>
<li>Create the file <b>/etc/mail/default-auth-info</b></li>
<li>It should contain this<source>username
username
password
localhost</source>Yes the username appears twice.</li>
<li>Replace username and password with the details of the account you just
created.</li>
<li>This file has to be chmod'ed 600 (-rw------) or sendmail won't read it.</li>
<li>Look for the line beginning <b>O AuthOptions=</b> If this line is commented out
with a leading <b>#</b>, remove the <b>#</b> and it should be <b>O
AuthOptions=A</b></li>
</ul>
<h1><i><b>Ta-da!</b></i></h1> Now you're ready to run the tests in Step3, all of the
mail should be accepted, the most likely rejection will be the final one.
</p>
</subsection>
<p>Thats it, good luck and happy mailing :)<br/>Danny Angus</p>
</section>
</body>
</document>
1.13 +2 -0 jakarta-james/src/xdocs/stylesheets/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-james/src/xdocs/stylesheets/project.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- project.xml 30 Jul 2002 13:37:34 -0000 1.12
+++ project.xml 30 Aug 2002 15:04:30 -0000 1.13
@@ -29,6 +29,8 @@
<item name="Using JDBC" href="/usingJDBC_v2.0.html"/>
<item name="Using LDAP" href="/usingLDAP_v1_2.html"/>
<item name="Using TLS" href="/usingTLS_v1_2.html"/>
+ <item name="James and sendmail" href="/james_and_sendmail.html"/>
+
<item name="Useful RFCs (web)"
href="http://jakarta.apache.org/james/rfclist"/>
</menu>
1.9 +3 -0 jakarta-james/www/architecture_v2_0.html
Index: architecture_v2_0.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/architecture_v2_0.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- architecture_v2_0.html 30 Jul 2002 13:50:13 -0000 1.8
+++ architecture_v2_0.html 30 Aug 2002 15:04:30 -0000 1.9
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.9 +3 -0 jakarta-james/www/changelog.html
Index: changelog.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/changelog.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- changelog.html 30 Jul 2002 13:50:13 -0000 1.8
+++ changelog.html 30 Aug 2002 15:04:30 -0000 1.9
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.10 +3 -0 jakarta-james/www/code-standards.html
Index: code-standards.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/code-standards.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- code-standards.html 30 Jul 2002 13:50:13 -0000 1.9
+++ code-standards.html 30 Aug 2002 15:04:30 -0000 1.10
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.9 +3 -0 jakarta-james/www/commandsIMAP.html
Index: commandsIMAP.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/commandsIMAP.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- commandsIMAP.html 30 Jul 2002 13:50:13 -0000 1.8
+++ commandsIMAP.html 30 Aug 2002 15:04:30 -0000 1.9
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.8 +6 -1 jakarta-james/www/configuration_v2_0.html
Index: configuration_v2_0.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/configuration_v2_0.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- configuration_v2_0.html 30 Jul 2002 13:50:13 -0000 1.7
+++ configuration_v2_0.html 30 Aug 2002 15:04:30 -0000 1.8
@@ -4,6 +4,8 @@
<title>Jakarta James - Configuration for James 2.0</title>
<meta value="Serge Knystautas" name="author">
<meta value="[EMAIL PROTECTED]" name="email">
+<meta value="Danny Angus" name="author">
+<meta value="[EMAIL PROTECTED]" name="email">
<LINK TITLE="Style" HREF="stylesheet.css" TYPE="text/css" REL="stylesheet">
</head>
<body vlink="#525D76" alink="#525D76" link="#525D76" text="#000000"
bgcolor="#ffffff">
@@ -82,6 +84,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
@@ -1053,7 +1058,7 @@
list.<br>
</br>
- The recipients list will be used if this is not supplied</font></td>
+ The recipients list will be used if this is not supplied.<br>If this
parameter is <to>recipients</to> then the addresses from the original To:
header will be re-used</font></td>
</tr>
1.4 +3 -0 jakarta-james/www/contribute.html
Index: contribute.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/contribute.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- contribute.html 30 Jul 2002 13:50:13 -0000 1.3
+++ contribute.html 30 Aug 2002 15:04:30 -0000 1.4
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.15 +31 -2 jakarta-james/www/FAQ.html
Index: FAQ.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/FAQ.html,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- FAQ.html 25 Aug 2002 17:51:27 -0000 1.14
+++ FAQ.html 30 Aug 2002 15:04:30 -0000 1.15
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
@@ -252,7 +255,13 @@
<a href="#13">How can I contribute to James?</a>
-</li>
+</li>
+
+<li>
+
+<a href="#14">How can I make sendmail route local mail (or all mail) through James
on the same machine?</a>
+
+</li>
</ul>
@@ -807,7 +816,27 @@
</blockquote>
</td>
</tr>
-</table>
+</table>
+
+
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+<tr>
+<td bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a
name="How%20can%20I%20make%20sendmail%20route%20local%20mail%20(or%20all%20mail)%20through%20James%20on%20the%20same%20machine?"><strong>How
can I make sendmail route local mail (or all mail) through James on the same
machine?</strong></a></font></td>
+</tr>
+<tr>
+<td>
+<blockquote>
+
+<p>Read the "sendmail How To" <a href="james_and_sendmail.html">here</a>
+
+<br>
+ Danny Angus
+ </p>
+
+</blockquote>
+</td>
+</tr>
+</table>
</blockquote>
</td>
1.15 +3 -0 jakarta-james/www/index.html
Index: index.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/index.html,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- index.html 19 Aug 2002 12:09:00 -0000 1.14
+++ index.html 30 Aug 2002 15:04:30 -0000 1.15
@@ -84,6 +84,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.9 +3 -0 jakarta-james/www/install.html
Index: install.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/install.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- install.html 30 Jul 2002 13:50:13 -0000 1.8
+++ install.html 30 Aug 2002 15:04:30 -0000 1.9
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.9 +3 -0 jakarta-james/www/license.html
Index: license.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/license.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- license.html 30 Jul 2002 13:50:13 -0000 1.8
+++ license.html 30 Aug 2002 15:04:30 -0000 1.9
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.10 +3 -0 jakarta-james/www/todo.html
Index: todo.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/todo.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- todo.html 30 Jul 2002 13:50:13 -0000 1.9
+++ todo.html 30 Aug 2002 15:04:30 -0000 1.10
@@ -84,6 +84,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.8 +3 -0 jakarta-james/www/usingJDBC_v2.0.html
Index: usingJDBC_v2.0.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/usingJDBC_v2.0.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- usingJDBC_v2.0.html 30 Jul 2002 13:50:13 -0000 1.7
+++ usingJDBC_v2.0.html 30 Aug 2002 15:04:30 -0000 1.8
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.8 +3 -0 jakarta-james/www/usingLDAP_v1_2.html
Index: usingLDAP_v1_2.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/usingLDAP_v1_2.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- usingLDAP_v1_2.html 30 Jul 2002 13:50:13 -0000 1.7
+++ usingLDAP_v1_2.html 30 Aug 2002 15:04:30 -0000 1.8
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.8 +3 -0 jakarta-james/www/usingTLS_v1_2.html
Index: usingTLS_v1_2.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/usingTLS_v1_2.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- usingTLS_v1_2.html 30 Jul 2002 13:50:13 -0000 1.7
+++ usingTLS_v1_2.html 30 Aug 2002 15:04:30 -0000 1.8
@@ -82,6 +82,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
1.8 +3 -0 jakarta-james/www/weare.html
Index: weare.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/weare.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- weare.html 18 Aug 2002 03:25:28 -0000 1.7
+++ weare.html 30 Aug 2002 15:04:30 -0000 1.8
@@ -84,6 +84,9 @@
<a href="./usingTLS_v1_2.html">Using TLS</a>
</li>
<li>
+<a href="./james_and_sendmail.html">James and sendmail</a>
+</li>
+<li>
<a href="http://jakarta.apache.org/james/rfclist">Useful RFCs (web)</a>
</li>
</ul>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>