mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-08 11:59:44 +00:00
Added support for SMTP PLAIN authentication
This commit is contained in:
@@ -234,9 +234,12 @@
|
||||
[body release];
|
||||
|
||||
mailer = [SOGoMailer mailerWithDomainDefaults: [activeUser domainDefaults]];
|
||||
[mailer sendMimePart: message
|
||||
[mailer
|
||||
sendMimePart: message
|
||||
toRecipients: [NSArray arrayWithObject: recipient]
|
||||
sender: from];
|
||||
sender: from
|
||||
withAuthenticator: [self authenticatorInContext: context]
|
||||
inContext: context];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@@ -205,9 +205,11 @@
|
||||
|
||||
dd = [activeUser domainDefaults];
|
||||
[[SOGoMailer mailerWithDomainDefaults: dd]
|
||||
sendMimePart: message
|
||||
toRecipients: [NSArray arrayWithObject: recipient]
|
||||
sender: from];
|
||||
sendMimePart: message
|
||||
toRecipients: [NSArray arrayWithObject: recipient]
|
||||
sender: from
|
||||
withAuthenticator: [self authenticatorInContext: context]
|
||||
inContext: context];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user