mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-09-25 07:00:33 +00:00
fix(mail): Fix Exception when using delegated identities. Closes #5951
This commit is contained in:
@@ -115,6 +115,7 @@
|
||||
- (NSArray *) mailAccounts;
|
||||
- (NSArray *) mailAccountsNoRawHtmlSignature;
|
||||
- (NSArray *) mailAccountsWithDelegatedIdentities: (BOOL) appendDeletegatedIdentities;
|
||||
- (NSArray *)mailAccountsWithDelegatedIdentities:(BOOL)appendDeletegatedIdentities forceRawHtmlSignature:(BOOL)forceRawHtmlSignature;
|
||||
- (NSDictionary *) accountWithName: (NSString *) accountName;
|
||||
- (NSArray *) allIdentities;
|
||||
- (NSDictionary *) primaryIdentity;
|
||||
|
||||
@@ -1034,6 +1034,11 @@ static const NSString *kEncryptedUserNamePrefix = @"uenc";
|
||||
return [self mailAccountsWithDelegatedIdentities: YES forceRawHtmlSignature: NO];
|
||||
}
|
||||
|
||||
- (NSArray *) mailAccountsWithDelegatedIdentities: (BOOL) appendDeletegatedIdentities
|
||||
{
|
||||
return [self mailAccountsWithDelegatedIdentities: appendDeletegatedIdentities forceRawHtmlSignature: [[self domainDefaults] forceRawHtmlSignature]];
|
||||
}
|
||||
|
||||
- (NSArray *) mailAccountsWithDelegatedIdentities: (BOOL) appendDeletegatedIdentities forceRawHtmlSignature: (BOOL) forceRawHtmlSignature
|
||||
{
|
||||
NSArray *auxAccounts;
|
||||
|
||||
Reference in New Issue
Block a user