Author: jleroux
Date: Sat Oct 6 17:13:12 2012
New Revision: 1395120
URL:
http://svn.apache.org/viewvc?rev=1395120&view=revLog:
At r1395115 I used the wrong patch, I should have used the one for 10.04, here is the fix
Modified:
ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/email/EmailServices.java
Modified: ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/email/EmailServices.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/email/EmailServices.java?rev=1395120&r1=1395119&r2=1395120&view=diff==============================================================================
--- ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/email/EmailServices.java (original)
+++ ofbiz/branches/release11.04/framework/common/src/org/ofbiz/common/email/EmailServices.java Sat Oct 6 17:13:12 2012
@@ -190,7 +190,7 @@ public class EmailServices {
sendPartial = UtilProperties.propertyValueEqualsIgnoreCase("general.properties", "mail.smtp.sendpartial", "true") ? true : false;
}
if (isStartTLSEnabled == null) {
- isStartTLSEnabled = EntityUtilProperties.propertyValueEqualsIgnoreCase("general.properties", "mail.smtp.starttls.enable", "true", delegator);
+ isStartTLSEnabled = UtilProperties.propertyValueEqualsIgnoreCase("general.properties", "mail.smtp.starttls.enable", "true");
}
} else if (sendVia == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resource, "CommonEmailSendMissingParameterSendVia", locale));