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"];