See ChangeLog.

Monotone-Parent: b0613f483a296b882038d9d023bcb71c82d4916e
Monotone-Revision: ed98effe549d74bf8029681e84b1654da70530c3

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-07-27T14:53:12
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2011-07-27 14:53:12 +00:00
parent 21436999e5
commit 44c36621a8
3 changed files with 26 additions and 2 deletions
+10
View File
@@ -1,3 +1,13 @@
2011-07-27 Francis Lachapelle <flachapelle@inverse.ca>
* SoObjects/SOGo/SOGoUserFolder.m (-ownerInContext:): in case the
user domain is specified in the URL but not in the user login
name, we remove it (user@domain => user).
* SoObjects/SOGo/SOGoUser.m (-initWithLogin:roles:trust:): drop
the domain from the login name when loginDomains are enabled but
domain-based UID is disabled.
2011-07-26 Francis Lachapelle <flachapelle@inverse.ca>
* UI/MailerUI/UIxMailListActions.m
+7 -1
View File
@@ -156,7 +156,7 @@
else
{
sd = [SOGoSystemDefaults sharedSystemDefaults];
if ([sd enableDomainBasedUID])
if ([sd enableDomainBasedUID] || [[sd loginDomains] count] > 0)
{
r = [newLogin rangeOfString: @"@" options: NSBackwardsSearch];
if (r.location != NSNotFound)
@@ -168,6 +168,12 @@
newLogin = [newLogin substringToIndex: r.location];
else
domain = nil;
if (domain != nil && ![sd enableDomainBasedUID])
// Login domains are enabled (SOGoLoginDomains) but not
// domain-based UID (SOGoEnableDomainBasedUID).
// Drop the domain from the login name.
domain = nil;
}
}
+9 -1
View File
@@ -103,12 +103,20 @@
- (NSString *) ownerInContext: (WOContext *) _ctx
{
NSString *login;
SOGoUser *ownerUser;
if (!owner)
{
ownerUser = [SOGoUser userWithLogin: nameInContainer roles: nil];
[self setOwner: [ownerUser login]];
login = [ownerUser login];
[self setOwner: login];
if (![nameInContainer isEqualToString: login])
// In case the user domain is specified in the URL but not in the user
// login name, we remove it (user@domain => user).
// This happens when SOGoLoginDomains is defined but
// SOGoEnableDomainBasedUID is disabled.
ASSIGN(nameInContainer, login);
}
return owner;