diff --git a/ChangeLog b/ChangeLog index 8c5661472..f598d4a11 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-05-25 Wolfgang Sourdeau + * SoObjects/Mailer/SOGoMailAccount.m ([SOGoMailAccount + -sharedFolderName]): new method. + ([SOGoMailAccount -otherUsersFolderName]): new method. + * UI/MailerUI/UIxMailFolderMenu.[hm]: removed module, obsoleted by new javascript code and the new UIxMailAccountActions class. diff --git a/SoObjects/Mailer/SOGoMailAccount.h b/SoObjects/Mailer/SOGoMailAccount.h index 00fa792f6..23a866140 100644 --- a/SoObjects/Mailer/SOGoMailAccount.h +++ b/SoObjects/Mailer/SOGoMailAccount.h @@ -69,6 +69,10 @@ - (SOGoMailFolder *)sentFolderInContext:(id)_ctx; - (SOGoMailFolder *)trashFolderInContext:(id)_ctx; +/* user defaults */ +- (NSString *) sharedFolderName; +- (NSString *) otherUsersFolderName; + @end #endif /* __Mailer_SOGoMailAccount_H__ */ diff --git a/SoObjects/Mailer/SOGoMailAccount.m b/SoObjects/Mailer/SOGoMailAccount.m index a1c6285d9..a9a148aa2 100644 --- a/SoObjects/Mailer/SOGoMailAccount.m +++ b/SoObjects/Mailer/SOGoMailAccount.m @@ -418,4 +418,14 @@ static BOOL useAltNamespace = NO; return [self shortTitle]; } +- (NSString *) sharedFolderName +{ + return sharedFolderName; +} + +- (NSString *) otherUsersFolderName +{ + return otherUsersFolderName; +} + @end /* SOGoMailAccount */