You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/07/19 13:29:41 UTC

svn commit: r219655 - /maven/continuum/trunk/continuum-plexus-application/src/conf/application.xml

Author: evenisse
Date: Tue Jul 19 04:29:38 2005
New Revision: 219655

URL: http://svn.apache.org/viewcvs?rev=219655&view=rev
Log:
Fix conf for javamail mail-sender

Modified:
    maven/continuum/trunk/continuum-plexus-application/src/conf/application.xml

Modified: maven/continuum/trunk/continuum-plexus-application/src/conf/application.xml
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/src/conf/application.xml?rev=219655&r1=219654&r2=219655&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-plexus-application/src/conf/application.xml (original)
+++ maven/continuum/trunk/continuum-plexus-application/src/conf/application.xml Tue Jul 19 04:29:38 2005
@@ -108,10 +108,15 @@
 
     <component>
       <role>org.codehaus.plexus.mailsender.MailSender</role>
-      <implementation>org.codehaus.plexus.mailsender.simple.SimpleMailSender</implementation>
+      <implementation>org.codehaus.plexus.mailsender.javamail.JavamailMailSender</implementation>
       <configuration>
         <smtp-host>localhost</smtp-host>
         <smtp-port>25</smtp-port>
+        <!--
+        <username>mylogin</username>
+        <password>mypassword</password>
+        <sslMode>true</sslMode>
+        -->
       </configuration>
     </component>