mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 22:38:51 +00:00
Fix saving of receipt action for main IMAP account
This commit is contained in:
1
NEWS
1
NEWS
@@ -7,6 +7,7 @@ Enhancements
|
||||
|
||||
Bug fixes
|
||||
- [web] properly handle Windows-1256 charaset (#4781)
|
||||
- [web] fixed saving value of receipt action for main IMAP account
|
||||
|
||||
4.0.8 (2019-07-19)
|
||||
------------------
|
||||
|
||||
@@ -1994,8 +1994,8 @@ static NSArray *reminderValues = nil;
|
||||
|
||||
if ([receipts isKindOfClass: [NSDictionary class]])
|
||||
{
|
||||
action = [receipts objectForKey: @"receiptAction"];
|
||||
[target setObject: @"1" forKey: @"SOGoMailReceiptAllow"];
|
||||
action = [[receipts objectForKey: @"receiptAction"] isEqualToString: @"ignore"] ? @"0" : @"1";
|
||||
[target setObject: action forKey: @"SOGoMailReceiptAllow"];
|
||||
|
||||
action = [receipts objectForKey: @"receiptNonRecipientAction"];
|
||||
if ([self _validateReceiptAction: action])
|
||||
|
||||
Reference in New Issue
Block a user