Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0012877
TypeCategorySeverityReproducibilityDate SubmittedLast Update
feature request[Openbravo ERP] 02. Master data managementmajoralways2010-04-06 10:382011-07-20 18:12
ReporternetworkbView Statuspublic 
Assigned Tojonalegriaesarte 
PrioritynormalResolutionopenFixed in Version
StatusnewFix in branchFixed in SCM revision
ProjectionnoneETAnoneTarget Version
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product Version2.50MP14SCM revision 
Review Assigned To
Web browser
ModulesCore
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0012877: It should be possible to send mails from Openbravo using SSL authentification

DescriptionIt should be possible to send mails from Openbravo using SSL authentification.
Now it is not possible because the EMail.java file use the javamail without especify the port used so by defautl the port 25 is used.

When configuring the email server it should be possible to specify if you are going to use ssl and specify wich port should be used to send the mail.
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]

-  Notes
(0027227)
networkb (developer)
2010-05-14 11:25

Modify the file
src/org/openbravo/erpCommon/utility/poc/EmailManager.java

This line has to be commented to use SSL
//props.put("mail.transport.protocol", "smtp");

The following lines has to be added
props.put("mail.smtp.user",configuration.smtpserveraccount);
props.put("mail.smtp.port","465");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.starttls.enable","true");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.socketFactory.fallback", "false");
props.put("mail.smtp.debug","true");

- Issue History
Date Modified Username Field Change
2010-04-06 10:38 networkb New Issue
2010-04-06 10:38 networkb Assigned To => adrianromero
2010-05-14 11:25 networkb Note Added: 0027227
2011-06-03 10:59 dalsasua Assigned To adrianromero => dalsasua
2011-07-20 18:12 dalsasua Assigned To dalsasua => jonalegriaesarte


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker