feat(mail): new parameter to disable S/MIME certificates

This commit is contained in:
Francis Lachapelle
2021-08-11 18:18:29 -04:00
parent 90752c4382
commit 545cfe58c6
6 changed files with 26 additions and 1 deletions
+1
View File
@@ -115,6 +115,7 @@
SOGoMailComposeMessageType = "html";
SOGoMailComposeFontSize = "0";
SOGoMailDisplayRemoteInlineImages = "never";
SOGoMailCertificateEnabled = YES;
SOGoMailAutoSave = "5";
+1
View File
@@ -66,6 +66,7 @@
- (BOOL) mailKeepDraftsAfterSend;
- (BOOL) mailAttachTextDocumentsInline;
- (NSArray *) mailListViewColumnsOrder;
- (BOOL) mailCertificateEnabled;
- (BOOL) aclSendEMailNotifications;
- (BOOL) appointmentSendEMailNotifications;
+5
View File
@@ -322,6 +322,11 @@
return [self stringArrayForKey: @"SOGoMailListViewColumnsOrder"];
}
- (BOOL) mailCertificateEnabled
{
return [self boolForKey: @"SOGoMailCertificateEnabled"];
}
- (NSArray *) superUsernames
{
return [self stringArrayForKey: @"SOGoSuperUsernames"];