From d5964f3fdd77b233d0e9bab7256eb55e1fb6f1e7 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Mon, 27 Feb 2012 18:43:42 +0000 Subject: [PATCH] Monotone-Parent: 4a7c44a79feb3e8d5e76eb15e2e3fbe5c2dcf7fa Monotone-Revision: edfc795ccfa7cf0b564762207d8377e9a1d4e650 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-02-27T18:43:42 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ OpenChange/MAPIStoreUserContext.m | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b07384f68..45c78dfc2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-02-27 Wolfgang Sourdeau + + * OpenChange/MAPIStoreUserContext.m (-rootFolders:): + -[NGImap4Connection enableExtensions:] now takes an array of + strings rather than a single string argument. + 2012-02-24 Wolfgang Sourdeau * SoObjects/Mailer/SOGoMailFolder.m: ensure the imap connection is diff --git a/OpenChange/MAPIStoreUserContext.m b/OpenChange/MAPIStoreUserContext.m index 222f1d560..53f20d37c 100644 --- a/OpenChange/MAPIStoreUserContext.m +++ b/OpenChange/MAPIStoreUserContext.m @@ -188,7 +188,7 @@ static NSMapTable *contextsTable = nil; [rootFolders setObject: currentFolder forKey: @"mail"]; [[currentFolder imap4Connection] - enableExtension: @"QRESYNC"]; + enableExtensions: [NSArray arrayWithObject: @"QRESYNC"]]; } return rootFolders;