From 5105dbb3428e586a5006770d6a08b4a175df2b63 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 23 Jan 2014 14:39:03 -0500 Subject: [PATCH] Make all attachments available when re/fwd'ing To do so, we save the draft to the mailstore. --- SoObjects/Mailer/SOGoDraftObject.m | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/SoObjects/Mailer/SOGoDraftObject.m b/SoObjects/Mailer/SOGoDraftObject.m index 94d0ecd0d..5074294dd 100644 --- a/SoObjects/Mailer/SOGoDraftObject.m +++ b/SoObjects/Mailer/SOGoDraftObject.m @@ -931,10 +931,9 @@ static NSString *userAgent = nil; [self storeInfo]; - if (!asInline) - // When the user has chosen to forward messages as attachment, immediately save the message - // to the IMAP store so the user can eventually view the attached file from the Web interface - [self save]; + // Save the message to the IMAP store so the user can eventually view the attached file(s) + // from the Web interface + [self save]; } /* accessors */