Exchange Shared and Resource mailboxes : AccountType fix
This commit is contained in:
parent
f54b1b8466
commit
b4ce9904b4
13 changed files with 43 additions and 32 deletions
|
@ -1679,7 +1679,7 @@ namespace WebsitePanel.EnterpriseServer
|
|||
if ((orgStats.AllocatedSharedMailboxes > -1) && (orgStats.CreatedSharedMailboxes >= orgStats.AllocatedSharedMailboxes))
|
||||
return BusinessErrorCodes.ERROR_EXCHANGE_MAILBOXES_QUOTA_LIMIT;
|
||||
}
|
||||
else if (accountType == ExchangeAccountType.ResourceMailbox)
|
||||
else if ((accountType == ExchangeAccountType.Room) || (accountType == ExchangeAccountType.Equipment))
|
||||
{
|
||||
if ((orgStats.AllocatedResourceMailboxes > -1) && (orgStats.CreatedResourceMailboxes >= orgStats.AllocatedResourceMailboxes))
|
||||
return BusinessErrorCodes.ERROR_EXCHANGE_MAILBOXES_QUOTA_LIMIT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue