diff --git a/ChangeLog b/ChangeLog index a9bc18387..92c4b21c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-10-16 Wolfgang Sourdeau + * SoObjects/Mailer/SOGoMailFolder.m ([SOGoMailFolder + -initWithName:newNameinContainer:newContainer]): the owner of a + shared folder is set to "nobody" by default. + * UI/Common/UIxAclEditor.m ([UIxAclEditor -hasOwner]): new method that returns whether the object has an owner or not. diff --git a/SoObjects/Mailer/SOGoMailFolder.m b/SoObjects/Mailer/SOGoMailFolder.m index b73b62a52..892a663c1 100644 --- a/SoObjects/Mailer/SOGoMailFolder.m +++ b/SoObjects/Mailer/SOGoMailFolder.m @@ -63,7 +63,7 @@ static BOOL useAltNamespace = NO; folder = [mailAccount sharedFolderName]; if (folder && [path hasPrefix: folder]) - [self setOwner: @"anyone"]; + [self setOwner: @"nobody"]; else { folder = [mailAccount otherUsersFolderName]; @@ -73,7 +73,7 @@ static BOOL useAltNamespace = NO; if ([names count] > 1) [self setOwner: [names objectAtIndex: 1]]; else - [self setOwner: @"anyone"]; + [self setOwner: @"nobody"]; } } }