You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by gm...@apache.org on 2013/05/25 22:25:54 UTC

svn commit: r1486357 - /roller/trunk/weblogger-webapp/src/main/webapp/META-INF/context.xml-example

Author: gmazza
Date: Sat May 25 20:25:54 2013
New Revision: 1486357

URL: http://svn.apache.org/r1486357
Log:
Missing SMTP properties added to sample META-INF/context.xml.

Modified:
    roller/trunk/weblogger-webapp/src/main/webapp/META-INF/context.xml-example

Modified: roller/trunk/weblogger-webapp/src/main/webapp/META-INF/context.xml-example
URL: http://svn.apache.org/viewvc/roller/trunk/weblogger-webapp/src/main/webapp/META-INF/context.xml-example?rev=1486357&r1=1486356&r2=1486357&view=diff
==============================================================================
--- roller/trunk/weblogger-webapp/src/main/webapp/META-INF/context.xml-example (original)
+++ roller/trunk/weblogger-webapp/src/main/webapp/META-INF/context.xml-example Sat May 25 20:25:54 2013
@@ -19,17 +19,21 @@ If you'd like to use Tomcat provided dat
     maxActive="20" maxIdle="3" removeAbandoned="true" maxWait="3000" /-->
 
   <!-- Below sample is for the GMail SMTP server, modify as appropriate
-       for the SMTP server and account you're using
+       for the SMTP server and account you're using.  Properties defined here:
+       https://javamail.java.net/nonav/docs/api/com/sun/mail/smtp/package-summary.html
   -->
   <!--Resource name="mail/Session" auth="Container" type="javax.mail.Session" 
-     mail.transport.protocol="smtp"
-     mail.smtp.host="smtp.gmail.com"
-     mail.smtp.port="465"
-     mail.debug="false"
-     mail.smtp.auth="true"
-     mail.smtp.user="blah.blah@gmail.com"
-     password="yourgmailpassword"
-     mail.smtp.starttls.enable="true"
-     mail.smtp.socketFactory.class="javax.net.ssl.SSLSocketFactory" /-->
+            mail.transport.protocol="smtp"
+            mail.smtp.host="smtp.gmail.com"
+            mail.smtp.port="465"
+            mail.smtp.auth="true"
+            mail.smtp.user="blah.blah@gmail.com" 
+            password="yourgmailpassword" 
+            mail.smtp.starttls.enable="true"
+            mail.smtp.socketFactory.class="javax.net.ssl.SSLSocketFactory"
+            mail.smtp.socketFactory.port="465"
+            mail.smtp.socketFactory.fallback="false"
+            mail.debug="false"
+  /-->
 
 </Context>