Monotone-Parent: d349f8009a1f0dc73dad705111ba662894fe6f97

Monotone-Revision: 708b215bd02d30547b93140994babe45b2472573

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-03-01T17:56:33
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2010-03-01 17:56:33 +00:00
parent 5de096bc9f
commit 43a51d3b44
3 changed files with 15 additions and 2 deletions

View File

@ -1,7 +1,7 @@
2010-03-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoDomainDefaults.m (-imapAclStyle): removed
obsolete method.
* SoObjects/SOGo/SOGoDomainDefaults.m (-imapFolderSeparator): new
method.
2010-02-23 Ludovic Marcotte <lmarcotte@inverse.ca>

View File

@ -39,6 +39,8 @@
- (NSString *) mailDomain;
- (NSString *) imapServer;
- (NSString *) imapAclStyle;
- (NSString *) imapFolderSeparator;
- (BOOL) imapAclConformsToIMAPExt;
- (BOOL) forceIMAPLoginWithEmail;
- (BOOL) forwardEnabled;

View File

@ -107,6 +107,17 @@
return [self stringForKey: @"SOGoIMAPServer"];
}
#warning should be removed when we make use of imap namespace
- (NSString *) imapAclStyle
{
return [self stringForKey: @"SOGoIMAPAclStyle"];
}
- (NSString *) imapFolderSeparator
{
return [self stringForKey: @"NGImap4ConnectionStringSeparator"];
}
#warning this should be determined from the capabilities
/* http://www.tools.ietf.org/wg/imapext/draft-ietf-imapext-acl/ */
- (BOOL) imapAclConformsToIMAPExt