From ee860bb58fa212faccb621f7c0d39358b9bcfefd Mon Sep 17 00:00:00 2001 From: j-dimension Date: Sun, 15 Dec 2024 22:30:11 +0100 Subject: [PATCH] fixed method signature. no support for office 365 yet. issue #2724 --- .../jlawyer/client/configuration/SystemMailboxDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/j-lawyer-client/src/com/jdimension/jlawyer/client/configuration/SystemMailboxDialog.java b/j-lawyer-client/src/com/jdimension/jlawyer/client/configuration/SystemMailboxDialog.java index 9dd6f0d49..a8a2c54ae 100644 --- a/j-lawyer-client/src/com/jdimension/jlawyer/client/configuration/SystemMailboxDialog.java +++ b/j-lawyer-client/src/com/jdimension/jlawyer/client/configuration/SystemMailboxDialog.java @@ -932,7 +932,7 @@ private void cmdTestMailActionPerformed(java.awt.event.ActionEvent evt) {//GEN-F if (!("".equals(this.txtSmtpPort.getText()))) { port = Integer.parseInt(this.txtSmtpPort.getText()); } - sysMan.testSendMail(this.txtSmtp.getText(), port, this.txtUser.getText(), new String(this.txtPassword.getPassword()), this.chkSsl.isSelected(), this.chkEmailStartTls.isSelected(), this.txtRecipient.getText()); + sysMan.testSendMail(this.txtSmtp.getText(), port, this.txtUser.getText(), new String(this.txtPassword.getPassword()), this.chkSsl.isSelected(), this.chkEmailStartTls.isSelected(), this.txtRecipient.getText(), false, null); JOptionPane.showMessageDialog(this, "Testnachricht erfolgreich verschickt - bitte Posteingang prüfen", "Hinweis", JOptionPane.INFORMATION_MESSAGE); } catch (Exception ex) { log.error(ex);