From 2786485de208db91554165bcb9341cfdf38c11da Mon Sep 17 00:00:00 2001 From: cm-schl <63400209+cm-schl@users.noreply.github.com> Date: Mon, 13 May 2024 17:25:46 +0200 Subject: [PATCH] don't pass a smtp password to setCredentials Password is not needed at the moment and passing it seams to create problems when sending mails --- plugins/ldap-mail-accounts/LdapMailAccounts.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/ldap-mail-accounts/LdapMailAccounts.php b/plugins/ldap-mail-accounts/LdapMailAccounts.php index 9a2d670a4..35d110f24 100644 --- a/plugins/ldap-mail-accounts/LdapMailAccounts.php +++ b/plugins/ldap-mail-accounts/LdapMailAccounts.php @@ -220,10 +220,9 @@ class LdapMailAccounts $sEmail, $sUsername, $sPass, - $sUsername, - $sPass + $sUsername ); - + $aAccounts[$sEmail] = $oNewAccount->asTokenArray($oAccount); }