From 027ef6bd187945c82f65c761bad38ea00b7acc71 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 4 Jul 2019 09:28:27 +0200 Subject: [PATCH] fix mail compose was not showing all identities after last commit --- api/src/Mail/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Mail/Account.php b/api/src/Mail/Account.php index f34457c878..f50b2ae0d8 100644 --- a/api/src/Mail/Account.php +++ b/api/src/Mail/Account.php @@ -408,7 +408,7 @@ class Account implements \ArrayAccess return false; // no imap host or credentials } // if we are not managing the mail-server, we do NOT need to check deliveryMode and accountStatus - if ($this->acc_smtp_type == __NAMESPACE__.'\\Imap') + if ($this->acc_smtp_type == __NAMESPACE__.'\\Smtp') { return true; }