feat(mail): Add SOGoMailHideInlineAttachments option to hide attachments when inline. Fixes #5490.

This commit is contained in:
smizrahi
2023-11-01 18:25:01 +01:00
parent 277b73c663
commit abce5f42cf
7 changed files with 49 additions and 8 deletions
+10
View File
@@ -959,6 +959,16 @@ NSString *SOGoPasswordRecoverySecondaryEmail = @"SecondaryEmail";
return [self objectForKey: @"SOGoMailLabelsColors"];
}
- (void) setHideInlineAttachments: (BOOL) newValue
{
[self setBool: newValue forKey: @"SOGoMailHideInlineAttachments"];
}
- (BOOL) hideInlineAttachments
{
return [self boolForKey: @"SOGoMailHideInlineAttachments"];
}
- (void) setSieveFilters: (NSArray *) newValue
{
[self setObject: newValue forKey: @"SOGoSieveFilters"];