From 64a8ce404879e717dd2f5e8192f7be47f3ae7504 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 10 Sep 2020 12:17:55 -0400 Subject: [PATCH] fix(mail): fallback to the default identity when replying/forwarding --- SoObjects/Mailer/SOGoMailForward.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SoObjects/Mailer/SOGoMailForward.m b/SoObjects/Mailer/SOGoMailForward.m index 5353715b9..9a437f553 100644 --- a/SoObjects/Mailer/SOGoMailForward.m +++ b/SoObjects/Mailer/SOGoMailForward.m @@ -263,6 +263,11 @@ } } + if (!identity) + { + identity = [[context activeUser] defaultIdentity]; + } + if (identity) { signature = [identity objectForKey: @"signature"];