Fix support for SieveFolderEncoding default

Fixes #2622
pull/64/head
Francis Lachapelle 2014-11-05 08:44:52 -05:00
parent 4b9958336c
commit 15be4861b6
2 changed files with 4 additions and 4 deletions

1
NEWS
View File

@ -14,6 +14,7 @@ Bug fixes
- fixed ActiveSync PING command flooding the server (#2940)
- fixed many interop issues with Windows Phones over ActiveSync
- fixed automatic return receipts crash when not in the recepient list (#2965)
- fixed support for Sieve folder encoding parameter (#2622)
2.2.9a (2014-09-29)
-------------------

View File

@ -1,6 +1,6 @@
/* UIxFilterEditor.m - this file is part of SOGo
*
* Copyright (C) 2010-2013 Inverse inc.
* Copyright (C) 2010-2014 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
@ -36,7 +36,6 @@
{
NSString *filterId;
NSDictionary *labels;
NSString *folderEncoding;
}
@end
@ -114,9 +113,9 @@
return [labels jsonRepresentation];
}
- (NSString *) folderEncoding
- (NSString *) sieveFolderEncoding
{
return [[SOGoSystemDefaults sharedSystemDefaults] folderEncoding];
return [[SOGoSystemDefaults sharedSystemDefaults] sieveFolderEncoding];
}
@end