Author: jaz
Date: Fri Oct 29 13:57:18 2010
New Revision: 1028747

URL: http://svn.apache.org/viewvc?rev=1028747&view=rev
Log:
socketFactory and port parameters were missing from the service definition even 
though they were being checked in the implementations; this addresses this 
oversight so that all settings can override general.properties when necessary 
by sending them directly to the service.

Modified:
    ofbiz/trunk/framework/common/servicedef/services_email.xml

Modified: ofbiz/trunk/framework/common/servicedef/services_email.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/servicedef/services_email.xml?rev=1028747&r1=1028746&r2=1028747&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/servicedef/services_email.xml (original)
+++ ofbiz/trunk/framework/common/servicedef/services_email.xml Fri Oct 29 
13:57:18 2010
@@ -33,8 +33,12 @@ under the License.
         <attribute name="sendFrom" type="String" mode="IN" optional="true"/>
         <attribute name="authUser" type="String" mode="IN" optional="true"/>
         <attribute name="authPass" type="String" mode="IN" optional="true"/>
+        <attribute name="port" type="String" mode="IN" optional="true"/>
         <attribute name="sendVia" type="String" mode="IN" optional="true"/>
-        <attribute name="sendType" type="String" mode="IN" optional="true"/>
+        <attribute name="sendType" type="String" mode="IN" optional="true"/>   
     
+        <attribute name="socketFactoryClass" type="String" mode="IN" 
optional="true"/>
+        <attribute name="socketFactoryPort" type="String" mode="IN" 
optional="true"/>
+        <attribute name="socketFactoryFallback" type="String" mode="IN" 
optional="true"/>        
         <attribute name="sendFailureNotification" mode="IN" type="Boolean" 
optional="true"/>
         <attribute name="sendPartial" mode="IN" type="Boolean" 
optional="true"/>
         <attribute name="subject" type="String" mode="INOUT" optional="true" 
allow-html="safe"/>


Reply via email to