mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-30 23:55:34 +00:00
(fix) not using cleaned data when sending mails (#4199)
This commit is contained in:
@@ -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)
|
||||
-------------------
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user