You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by an...@apache.org on 2003/05/27 17:33:25 UTC

cvs commit: ant/docs/manual/CoreTasks mail.html

antoine     2003/05/27 08:33:25

  Modified:    docs/manual listeners.html
               docs/manual/CoreTasks mail.html
  Log:
  had forgotten to submit manual pages, oops
  PR: 5969
  
  Revision  Changes    Path
  1.13      +12 -0     ant/docs/manual/listeners.html
  
  Index: listeners.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/listeners.html,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- listeners.html	15 May 2003 11:30:27 -0000	1.12
  +++ listeners.html	27 May 2003 15:33:25 -0000	1.13
  @@ -126,6 +126,18 @@
       <td width="63%">No, default &quot;25&quot;</td>
     </tr>
     <tr>
  +    <td width="337">MailLogger.user</td>
  +    <td width="63%">user name for SMTP auth</td>
  +    <td width="63%">Yes, if SMTP auth is required on your SMTP server<br/>
  +    the email message will be then sent using Mime and requires JavaMail</td>
  +  </tr>
  +  <tr>
  +    <td width="337">MailLogger.password</td>
  +    <td width="63%">password for SMTP auth</td>
  +    <td width="63%">Yes, if SMTP auth is required on your SMTP server<br/>
  +    the email message will be then sent using Mime and requires JavaMail</td>
  +  </tr>
  +  <tr>
       <td width="337">MailLogger.from</td>
       <td width="63%">Mail &quot;from&quot; address</td>
       <td width="63%">Yes, if mail needs to be sent</td>
  
  
  
  1.19      +19 -3     ant/docs/manual/CoreTasks/mail.html
  
  Index: mail.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/mail.html,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- mail.html	15 May 2003 11:30:26 -0000	1.18
  +++ mail.html	27 May 2003 15:33:25 -0000	1.19
  @@ -9,8 +9,11 @@
   
   <h2><a name="mail">Mail</a></h2>
   <h3>Description</h3>
  -<p>A task to send SMTP email. This task can send mail using either plain
  -text, UU encoding, or MIME format mail, depending on what is available.
  +<p>A task to send SMTP email.<br/><br/>
  +This task can send mail using either plain
  +text, UU encoding, or MIME format mail, depending on what is available.<br/>
  +<br/>
  +If you need SMTP auth, you have to use MIME (and therefore to install JavaMail).<br/><br/>
   Attachments may be sent using nested
   <a href="../CoreTypes/fileset.html">fileset</a> elements.</p>
   <p><strong>Note:</strong> This task may depend on external libraries
  @@ -99,10 +102,23 @@
       <td align="center" valign="top">No</td>
     </tr>
     <tr>
  +    <td valign="top">user</td>
  +    <td valign="top">user name for SMTP auth</td>
  +    <td valign="center">Yes, if SMTP auth is required on your SMTP server<br/>
  +    the email message will be then sent using Mime and requires JavaMail</td>
  +  </tr>
  +  <tr>
  +    <td valign="top">password</td>
  +    <td valign="top">password for SMTP auth</td>
  +    <td valign="center">Yes, if SMTP auth is required on your SMTP server<br/>
  +    the email message will be then sent using Mime and requires JavaMail</td>
  +  </tr>
  +  <tr>
       <td valign="top">encoding</td>
       <td valign="top">Specifies the encoding to use for the content of the email.
       Values are <code>mime</code>, <code>uu</code>, <code>plain</code>, or
  -      <code>auto</code>.  The default value is <code>auto</code>.</td>
  +      <code>auto</code>.  The default value is <code>auto</code>.
  +      <code>uu</code> or <code>plain</code> are not compatible with SMTP auth</td>
       <td align="center" valign="top">No</td>
     </tr>
     <tr>