mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-19 21:53:19 +00:00
@@ -54,12 +54,14 @@
|
||||
SOGoFirstWeekOfYear = "January1";
|
||||
SOGoShortDateFormat = "%d-%b-%y";
|
||||
SOGoLongDateFormat = "%A, %B %d, %Y";
|
||||
SOGoExternalAvatarsEnabled = YES;
|
||||
SOGoGravatarEnabled = NO;
|
||||
SOGoAlternateAvatar = "none";
|
||||
|
||||
SOGoIMAPServer = "localhost";
|
||||
SOGoMailDomain = "localhost";
|
||||
SOGoSelectedAddressBook = "collected";
|
||||
SOGoRefreshViewCheck = "manually";
|
||||
SOGoAlternateAvatar = "none";
|
||||
SOGoMailMessageForwarding = "inline";
|
||||
SOGoMailReplyPlacement = "below";
|
||||
SOGoMailSignaturePlacement = "below";
|
||||
|
||||
@@ -47,6 +47,7 @@
|
||||
- (NSString *) imapFolderSeparator;
|
||||
- (BOOL) imapAclConformsToIMAPExt;
|
||||
- (BOOL) forceExternalLoginWithEmail;
|
||||
- (BOOL) externalAvatarsEnabled;
|
||||
- (BOOL) sieveScriptsEnabled;
|
||||
- (BOOL) forwardEnabled;
|
||||
- (int) forwardConstraints;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* SOGoDomainDefaults.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2009-2015 Inverse inc.
|
||||
* Copyright (C) 2009-2016 Inverse inc.
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -191,6 +191,11 @@
|
||||
return [self boolForKey: @"SOGoForceIMAPLoginWithEmail"];
|
||||
}
|
||||
|
||||
- (BOOL) externalAvatarsEnabled
|
||||
{
|
||||
return [self boolForKey: @"SOGoExternalAvatarsEnabled"];
|
||||
}
|
||||
|
||||
- (BOOL) sieveScriptsEnabled
|
||||
{
|
||||
return [self boolForKey: @"SOGoSieveScriptsEnabled"];
|
||||
|
||||
@@ -126,6 +126,7 @@ extern NSString *SOGoWeekStartFirstFullWeek;
|
||||
- (void) setRefreshViewCheck: (NSString *) newValue;
|
||||
- (NSString *) refreshViewCheck;
|
||||
|
||||
- (BOOL) gravatarEnabled;
|
||||
- (void) setAlternateAvatar: (NSString *) newValue;
|
||||
- (NSString *) alternateAvatar;
|
||||
|
||||
|
||||
@@ -514,6 +514,11 @@ NSString *SOGoWeekStartFirstFullWeek = @"FirstFullWeek";
|
||||
return [self stringForKey: @"SOGoRefreshViewCheck"];
|
||||
}
|
||||
|
||||
- (BOOL) gravatarEnabled
|
||||
{
|
||||
return [self boolForKey: @"SOGoGravatarEnabled"];
|
||||
}
|
||||
|
||||
- (void) setAlternateAvatar: (NSString *) newValue
|
||||
{
|
||||
[self setObject: newValue forKey: @"SOGoAlternateAvatar"];
|
||||
|
||||
Reference in New Issue
Block a user