mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-09-23 14:10:32 +00:00
feat(alarms): Add possibility to use SMTP master account for system alarms. Fixes #5565.
This commit is contained in:
@@ -697,7 +697,8 @@ static NSString *mailETag = nil;
|
||||
toRecipients: [NSArray arrayWithObject: email]
|
||||
sender: [self _matchingIdentityEMail]
|
||||
withAuthenticator: [self authenticatorInContext: context]
|
||||
inContext: context])
|
||||
inContext: context
|
||||
systemMessage: YES])
|
||||
[self _flagMessageWithMDNSent];
|
||||
}
|
||||
|
||||
|
||||
@@ -888,7 +888,8 @@ static const NSString *kJwtKey = @"jwt";
|
||||
toRecipients: [NSArray arrayWithObjects: toEmail, nil]
|
||||
sender: fromEmail
|
||||
withAuthenticator: [SOGoEmptyAuthenticator sharedSOGoEmptyAuthenticator]
|
||||
inContext: [self context]];
|
||||
inContext: [self context]
|
||||
systemMessage: YES];
|
||||
|
||||
if (!e) {
|
||||
response = [self responseWithStatus: 200
|
||||
|
||||
@@ -238,7 +238,8 @@
|
||||
toRecipients: [NSArray arrayWithObject: recipient]
|
||||
sender: from
|
||||
withAuthenticator: [self authenticatorInContext: context]
|
||||
inContext: context];
|
||||
inContext: context
|
||||
systemMessage: YES];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@@ -208,7 +208,8 @@
|
||||
toRecipients: [NSArray arrayWithObject: recipient]
|
||||
sender: from
|
||||
withAuthenticator: [self authenticatorInContext: context]
|
||||
inContext: context];
|
||||
inContext: context
|
||||
systemMessage: YES];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user