(fix) not using cleaned data when sending mails (#4199)

This commit is contained in:
Ludovic Marcotte
2017-06-16 08:37:34 -04:00
parent fc740b1c9f
commit 31d131f4d3
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -7,6 +7,7 @@ New features
Bug fixes
- [web] use the organizer's alarm by default when accepting IMIP messages (#3934)
- [eas] don't include task folders if we hide them in SOGo (#4164)
- [core] not using cleaned data when sending mails (#4199)
2.3.21 (2017-06-01)
-------------------
+2 -2
View File
@@ -397,11 +397,11 @@
}
if ([mailingMechanism isEqualToString: @"sendmail"])
result = [self _sendmailSendData: data
result = [self _sendmailSendData: cleaned_message
toRecipients: recipients
sender: [sender pureEMailAddress]];
else
result = [self _smtpSendData: data
result = [self _smtpSendData: cleaned_message
toRecipients: recipients
sender: [sender pureEMailAddress]
withAuthenticator: authenticator