Merge pull request #19 from alexcloutier/fix/2622

BugFix #0002622: The server Dovecot use by default an UTF-8 and by doing...
This commit is contained in:
extrafu
2014-04-04 09:21:49 -04:00
6 changed files with 21 additions and 1 deletions
+1
View File
@@ -14,6 +14,7 @@
SOGoZipPath = "/usr/bin/zip";
SOGoEncryptionKey = "MySOGoEncryptionKey";
SOGoSieveFolderEncoding = "UTF-7";
WOUseRelativeURLs = YES;
WOMessageUseUTF8 = YES;
+1
View File
@@ -42,6 +42,7 @@
- (BOOL) trustProxyAuthentication;
- (NSString *) encryptionKey;
- (BOOL) useRelativeURLs;
- (NSString *) sieveFolderEncoding;
- (BOOL) isWebAccessEnabled;
- (BOOL) isCalendarDAVAccessEnabled;
+6
View File
@@ -356,6 +356,12 @@ _injectConfigurationFromFile (NSMutableDictionary *defaultsDict,
return [self boolForKey: @"WOUseRelativeURLs"];
}
- (NSString *) sieveFolderEncoding
{
return [self stringForKey: @"SOGoSieveFolderEncoding"];
}
- (BOOL) isWebAccessEnabled
{
return [self boolForKey: @"SOGoWebAccessEnabled"];