aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-08-18 22:53:03 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-08-18 22:53:03 -0700
commit775ad7c56e930887967fb4d3fa6462c5ba826102 (patch)
treec860f0b48caa31394b5c61368eeb8aabd1d1be91 /src/objc
parentc378363b5afc43b98d62acb1a3d8186a907da915 (diff)
parentd86e4a126eb37d62557f35ca7bd13d5e16ece648 (diff)
Merge branch 'autoconfiguration'
Diffstat (limited to 'src/objc')
-rw-r--r--src/objc/abstract/MCOConstants.h2
-rwxr-xr-xsrc/objc/imap/MCOIMAPSession.h3
-rwxr-xr-xsrc/objc/imap/MCOIMAPSession.mm1
3 files changed, 2 insertions, 4 deletions
diff --git a/src/objc/abstract/MCOConstants.h b/src/objc/abstract/MCOConstants.h
index 427e787a..0bdf9af6 100644
--- a/src/objc/abstract/MCOConstants.h
+++ b/src/objc/abstract/MCOConstants.h
@@ -328,6 +328,8 @@ typedef enum {
MCOErrorDeleteMessage,
/** SMTP: Error while checking account.*/
MCOErrorInvalidAccount,
+ /** IMAP: Error when trying to enable compression.*/
+ MCOErrorCompression,
/** The count of all errors */
MCOErrorCodeCount,
} MCOErrorCode;
diff --git a/src/objc/imap/MCOIMAPSession.h b/src/objc/imap/MCOIMAPSession.h
index ea920114..e92a0636 100755
--- a/src/objc/imap/MCOIMAPSession.h
+++ b/src/objc/imap/MCOIMAPSession.h
@@ -79,9 +79,6 @@
/** When set to YES, VoIP capability will be enabled on the IMAP connection on iOS */
@property (nonatomic, assign, getter=isVoIPEnabled) BOOL voIPEnabled;
-/** The default delimiter for the folder paths */
-@property (nonatomic, assign) char delimiter;
-
/** The default namespace. */
@property (nonatomic, strong) MCOIMAPNamespace * defaultNamespace;
diff --git a/src/objc/imap/MCOIMAPSession.mm b/src/objc/imap/MCOIMAPSession.mm
index a9bbeb5c..b3584f4d 100755
--- a/src/objc/imap/MCOIMAPSession.mm
+++ b/src/objc/imap/MCOIMAPSession.mm
@@ -86,7 +86,6 @@ MCO_OBJC_SYNTHESIZE_SCALAR(MCOConnectionType, mailcore::ConnectionType, setConne
MCO_OBJC_SYNTHESIZE_SCALAR(NSTimeInterval, time_t, setTimeout, timeout)
MCO_OBJC_SYNTHESIZE_BOOL(setCheckCertificateEnabled, isCheckCertificateEnabled)
MCO_OBJC_SYNTHESIZE_BOOL(setVoIPEnabled, isVoIPEnabled)
-MCO_OBJC_SYNTHESIZE_SCALAR(char, char, setDelimiter, delimiter)
MCO_OBJC_SYNTHESIZE_SCALAR(BOOL, BOOL, setAllowsFolderConcurrentAccessEnabled, allowsFolderConcurrentAccessEnabled)
MCO_OBJC_SYNTHESIZE_SCALAR(unsigned int, unsigned int, setMaximumConnections, maximumConnections)