Skip to content

Commit

Permalink
Disable StartTLS encryption to fix Feedback button.
Browse files Browse the repository at this point in the history
  • Loading branch information
meier-rene authored Oct 30, 2024
1 parent f30038e commit 5284676
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3202,7 +3202,7 @@ public void submitFeedbackListener(ActionEvent actionEvent) {
if(emailSettings.containsKey(VariableNames.FEEDBACK_EMAIL_USER) && emailSettings.containsKey(VariableNames.FEEDBACK_EMAIL_PASS)) {
email.setAuthentication((String)emailSettings.get(VariableNames.FEEDBACK_EMAIL_USER), (String)emailSettings.get(VariableNames.FEEDBACK_EMAIL_PASS));
}
email.setStartTLSRequired(true);
//email.setStartTLSRequired(true);
email.addReplyTo(this.feedbackEmail);
email.setMsg("From: " + this.feedbackEmail + ls
+ "Type: " + this.feedbackType + ls
Expand Down

0 comments on commit 5284676

Please sign in to comment.