mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 11:55:24 +00:00
Monotone-Parent: d730814de50b7c4fd0fa165b4b6e02e968ff60ef
Monotone-Revision: 148caf2ae66d2024b6008a2633e9145890921239 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-09-01T20:27:45 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -501,6 +501,46 @@ NSString *SOGoWeekStartFirstFullWeek = @"FirstFullWeek";
|
||||
return signaturePlacement;
|
||||
}
|
||||
|
||||
- (void) setAllowUserReceipt: (BOOL) allow
|
||||
{
|
||||
[self setBool: allow forKey: @"SOGoMailReceiptAllow"];
|
||||
}
|
||||
|
||||
- (BOOL) allowUserReceipt
|
||||
{
|
||||
return [self boolForKey: @"SOGoMailReceiptAllow"];
|
||||
}
|
||||
|
||||
- (void) setUserReceiptNonRecipientAction: (NSString *) action
|
||||
{
|
||||
[self setObject: action forKey: @"SOGoMailReceiptNonRecipientAction"];
|
||||
}
|
||||
|
||||
- (NSString *) userReceiptNonRecipientAction
|
||||
{
|
||||
return [self stringForKey: @"SOGoMailReceiptNonRecipientAction"];
|
||||
}
|
||||
|
||||
- (void) setUserReceiptOutsideDomainAction: (NSString *) action
|
||||
{
|
||||
[self setObject: action forKey: @"SOGoMailReceiptOutsideDomainAction"];
|
||||
}
|
||||
|
||||
- (NSString *) userReceiptOutsideDomainAction
|
||||
{
|
||||
return [self stringForKey: @"SOGoMailReceiptOutsideDomainAction"];
|
||||
}
|
||||
|
||||
- (void) setUserReceiptAnyAction: (NSString *) action
|
||||
{
|
||||
[self setObject: action forKey: @"SOGoMailReceiptAnyAction"];
|
||||
}
|
||||
|
||||
- (NSString *) userReceiptAnyAction
|
||||
{
|
||||
return [self stringForKey: @"SOGoMailReceiptAnyAction"];
|
||||
}
|
||||
|
||||
- (void) setMailUseOutlookStyleReplies: (BOOL) newValue
|
||||
{
|
||||
[self setBool: newValue forKey: @"SOGoMailUseOutlookStyleReplies"];
|
||||
|
||||
Reference in New Issue
Block a user