noel        2003/05/27 13:59:37

  Modified:    www      changelog.html provided_mailets_2_1.html
                        provided_matchers_2_1.html weare.html
  Log:
  Updated web site for recent changes to contributors, docs and changelog
  
  Revision  Changes    Path
  1.21      +29 -0     jakarta-james/www/changelog.html
  
  Index: changelog.html
  ===================================================================
  RCS file: /home/cvs/jakarta-james/www/changelog.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- changelog.html    12 May 2003 23:12:06 -0000      1.20
  +++ changelog.html    27 May 2003 20:59:36 -0000      1.21
  @@ -183,6 +183,35 @@
   
   <p>Expected release June 2003</p>
   
  +<li>[NjB,MT,VGP] (code) Added Quota Matcher framework and fixed storage matcher</li>
  +
  +<li>[NjB] (code) Fixed LocalDelivery.LocalMimeMessage to prevent re-rendering</li>
  +
  +<li>[JW,NjB] (code) Enable allow partial sends from RemoteDelivery</li>
  +
  +<li>[NjB] (code) Control size of ResultSets</li>
  +
  +<li>[NjB] (code) ThreadPool implementing hard limit on upper number of threads</li>
  +
  +<li>[NjB] (code) Fixes to RemoteManager to fix response buffering and logging</li>
  +
  +<li>[NjB] (code) Improved performance looking up message size</li>
  +
  +<li>[NjB] (code) Added support for &lt;authorizedAddresses&gt; when using SMTP 
AUTH</li>
  +
  +<li>[CB3] (code) New RecipientIsRegex matcher</li>
  +
  +<li>[HJ] (code) New AttachmentFileNameIs matcher</li>
  +
  +<li>[HJ] (code) Improved support for character encoded subjects in mailing 
lists</li>
  +
  +<li>[NjB] (code) Added support for &lt;authorizedAddresses&gt; to implement fast 
fail relay rejection</li>
  +
  +<li>[TS,NjB] (code) Added support for multiple gateway servers.</li>
  +
  +<li>[NjB] (code) Changed RemoteDelivery to increment the delivery error count per 
pass, not per server.</li>
  +
  +
   <li>[JW] (code) JavaMail tuning in RemoteDelivery</li>
   
   <li>[SS4] (update) Upgrade to DnsJava 1.3.2</li>
  
  
  
  1.7       +12 -6     jakarta-james/www/provided_mailets_2_1.html
  
  Index: provided_mailets_2_1.html
  ===================================================================
  RCS file: /home/cvs/jakarta-james/www/provided_mailets_2_1.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- provided_mailets_2_1.html 14 May 2003 15:54:50 -0000      1.6
  +++ provided_mailets_2_1.html 27 May 2003 20:59:37 -0000      1.7
  @@ -578,14 +578,20 @@
   SMTP connections.</li>
   
   <li>
  -<strong>gateway</strong> (optional) - The host name of the SMTP server to be used 
as a gateway for
  -this server.  If this value is set, then all messages will be delivered to the 
gateway server,
  -regardless of recipient address.  If this value is unset, delivery will occur to 
SMTP servers resolved
  -by MX lookup.</li>
  +<strong>gateway</strong> (optional) - The host name of the SMTP server 
  +to be used as a gateway for this server.  If this value is set, then all 
  +messages will be delivered to the gateway server, regardless of recipient 
  +address.  To specify more than one gateway server, add multiple gateway tags, 
  +each containing one value.  If more than one server is specified, they will be 
  +tried in order until one is successful.  In addition the port may be specified 
  +for each gateway in the format &lt;host&gt;:&lt;port&gt;.  If this 
  +value is unset, delivery will occur to SMTP servers resolved by MX lookup.</li>
   
   <li>
  -<strong>gatewayPort</strong> (optional) - The port number of the SMTP server to be 
used as a gateway for
  -this server.  This value is required if gateway is set.</li>
  +<strong>gatewayPort</strong> (optional) - The default port number of the 
  +SMTP server to be used as a gateway for this server.  This value will be 
  +employed when a gateway is set <em>and</em> the gateway value does not specify 
  +a port as described above.</li>
   
   <li>
   <strong>bind</strong> (optional) - If present, this value is a string 
  
  
  
  1.6       +20 -0     jakarta-james/www/provided_matchers_2_1.html
  
  Index: provided_matchers_2_1.html
  ===================================================================
  RCS file: /home/cvs/jakarta-james/www/provided_matchers_2_1.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- provided_matchers_2_1.html        11 May 2003 02:04:03 -0000      1.5
  +++ provided_matchers_2_1.html        27 May 2003 20:59:37 -0000      1.6
  @@ -176,6 +176,26 @@
   
   <table width="100%" cellpadding="2" cellspacing="0" border="0">
   <tr>
  +<td bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="AttachmentFileNameIs"><strong>AttachmentFileNameIs</strong></a></font></td>
  +</tr>
  +<tr>
  +<td>
  +<blockquote>
  +
  +<p>Description: It can be used to refuse emails with SCR, PIF, EXE etc. attachments.
  +It matches mails that has a file attachment with a file name meeting one of the 
supplied filters.
  +All recipients are returned.</p>
  +
  +<p>Configuration string: A comma or space delimited list of file names. 
  +File names may start with a wildcard '*'. Example: 
*.scr,*.bat,*.pif,*.pi,*.com,*.exe</p>
  +
  +</blockquote>
  +</td>
  +</tr>
  +</table>
  +
  +<table width="100%" cellpadding="2" cellspacing="0" border="0">
  +<tr>
   <td bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a 
name="CommandForListserv"><strong>CommandForListserv</strong></a></font></td>
   </tr>
   <tr>
  
  
  
  1.21      +16 -0     jakarta-james/www/weare.html
  
  Index: weare.html
  ===================================================================
  RCS file: /home/cvs/jakarta-james/www/weare.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- weare.html        12 May 2003 23:12:06 -0000      1.20
  +++ weare.html        27 May 2003 20:59:37 -0000      1.21
  @@ -314,6 +314,22 @@
   <b>Hontvari Jozsef (hontvari2 at solware.com) [HJ]</b>
   </p>
   
  +<p>
  +<b>Vincenzo Gianferrari Pini (vincenzo.gianferraripini at praxis.it) [VGP]</b>
  +</p>
  +
  +<p>
  +<b>Cesar Bonadio (bonadio at picture.com.br) [CB3]</b>
  +</p>
  +
  +<p>
  +<b>Marco Tedone (mtedone at jemos.org) [MT]</b>
  +</p>
  +
  +<p>
  +<b>Tim Stephenson (tim at thestephensons.me.uk) [TS]</b>
  +</p>
  +
   </blockquote>
   </td>
   </tr>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to