Fixed: Lync unable to delete federation domain
Adjusted: certain input items forced to lower case
This commit is contained in:
parent
16c40cf9ac
commit
317653269f
5 changed files with 21 additions and 7 deletions
|
@ -225,7 +225,7 @@ namespace WebsitePanel.Portal
|
|||
{
|
||||
domainId = ES.Services.Servers.AddDomainWithProvisioning(PanelSecurity.PackageId,
|
||||
domainName.ToLower(), type, CreateWebSite.Checked, pointWebSiteId, pointMailDomainId,
|
||||
EnableDns.Checked, CreateInstantAlias.Checked, AllowSubDomains.Checked, (PointWebSite.Checked && WebSitesList.Items.Count > 0) ? string.Empty : txtHostName.Text);
|
||||
EnableDns.Checked, CreateInstantAlias.Checked, AllowSubDomains.Checked, (PointWebSite.Checked && WebSitesList.Items.Count > 0) ? string.Empty : txtHostName.Text.ToLower());
|
||||
|
||||
if (domainId < 0)
|
||||
{
|
||||
|
|
|
@ -91,7 +91,7 @@ namespace WebsitePanel.Portal.ExchangeServer
|
|||
try
|
||||
{
|
||||
int result = ES.Services.ExchangeServer.AddMailboxEmailAddress(
|
||||
PanelRequest.ItemID, PanelRequest.AccountID, email.Email);
|
||||
PanelRequest.ItemID, PanelRequest.AccountID, email.Email.ToLower());
|
||||
|
||||
if (result < 0)
|
||||
{
|
||||
|
|
|
@ -92,8 +92,8 @@ namespace WebsitePanel.Portal.HostedSolution
|
|||
try
|
||||
{
|
||||
int accountId = ES.Services.Organizations.CreateUser(PanelRequest.ItemID, txtDisplayName.Text.Trim(),
|
||||
email.AccountName,
|
||||
email.DomainName,
|
||||
email.AccountName.ToLower(),
|
||||
email.DomainName.ToLower(),
|
||||
password.Password,
|
||||
txtSubscriberNumber.Text.Trim(),
|
||||
false,
|
||||
|
|
|
@ -67,7 +67,7 @@ namespace WebsitePanel.Portal
|
|||
{
|
||||
try
|
||||
{
|
||||
int result = ES.Services.WebServers.AddWebSitePointer(PanelRequest.ItemID, txtHostName.Text, domainsSelectDomainControl.DomainId);
|
||||
int result = ES.Services.WebServers.AddWebSitePointer(PanelRequest.ItemID, txtHostName.Text.ToLower(), domainsSelectDomainControl.DomainId);
|
||||
if (result < 0)
|
||||
{
|
||||
ShowResultMessage(result);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue