From 849d4ae3bc80925bd9188fa07b41160b70385272 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 12 Aug 2010 20:19:15 +0000 Subject: [PATCH] Monotone-Parent: a27c1cf8fb89e01d812714ba8c6294023c4e5fdf Monotone-Revision: 1219efce31ce5750f796ef3beb5fb03632233c2d Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-08-12T20:19:15 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ SoObjects/SOGo/SOGoDomainDefaults.h | 1 + SoObjects/SOGo/SOGoDomainDefaults.m | 5 +++++ 3 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 924c965ec..4eca5bfbd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-08-12 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoDomainDefaults.m (-mailCheckAllUnseenCounts): + new method returning whether the unseen count of all mailboxes + should be checked. + * SoObjects/Mailer/SOGoMailAccount.m (-updateFilters): when the first login attempt fails, we must request a new password to the authenticator (as intended originally). diff --git a/SoObjects/SOGo/SOGoDomainDefaults.h b/SoObjects/SOGo/SOGoDomainDefaults.h index 66c04eabe..ac9cb73c2 100644 --- a/SoObjects/SOGo/SOGoDomainDefaults.h +++ b/SoObjects/SOGo/SOGoDomainDefaults.h @@ -62,6 +62,7 @@ - (NSArray *) calendarDefaultRoles; - (NSArray *) contactsDefaultRoles; - (NSArray *) mailPollingIntervals; +- (BOOL) mailCheckAllUnseenCounts; - (NSString *) calendarDefaultCategoryColor; diff --git a/SoObjects/SOGo/SOGoDomainDefaults.m b/SoObjects/SOGo/SOGoDomainDefaults.m index 02445a855..3338bfdb6 100644 --- a/SoObjects/SOGo/SOGoDomainDefaults.m +++ b/SoObjects/SOGo/SOGoDomainDefaults.m @@ -198,6 +198,11 @@ return [self arrayForKey: @"SOGoMailPollingIntervals"]; } +- (BOOL) mailCheckAllUnseenCounts +{ + return [self boolForKey: @"SOGoMailCheckAllUnseenCounts"]; +} + - (NSString *) smtpServer { return [self stringForKey: @"SOGoSMTPServer"];