From b321ba04ea250e8a7ae08915f6cd115330930d08 Mon Sep 17 00:00:00 2001 From: dev_amdtel Date: Sun, 5 Apr 2015 13:43:59 +0400 Subject: [PATCH 1/9] fix bug in rename public folders --- .../Exchange2013.cs | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs index 36a2f85f..02dead74 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs +++ b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs @@ -4995,12 +4995,18 @@ namespace WebsitePanel.Providers.HostedSolution //general settings Command cmd = new Command("Set-MailPublicFolder"); cmd.Parameters.Add("Identity", folder); - if (!folderName.Equals(newFolderName, StringComparison.OrdinalIgnoreCase)) - { - cmd.Parameters.Add("Name", newFolderName); - } cmd.Parameters.Add("HiddenFromAddressListsEnabled", hideFromAddressBook); ExecuteShellCommand(runSpace, cmd); + + // rename + if (!folderName.Equals(newFolderName, StringComparison.OrdinalIgnoreCase)) + { + cmd = new Command("Set-PublicFolder"); + cmd.Parameters.Add("Identity", folder); + cmd.Parameters.Add("Name", newFolderName); + ExecuteShellCommand(runSpace, cmd); + + } } finally { From f29b26a6aaaa20e4a5d16e1b93a454611e51d113 Mon Sep 17 00:00:00 2001 From: Virtuworks Date: Sun, 5 Apr 2015 09:36:54 -0400 Subject: [PATCH 2/9] Merge --- ...rs.HostedSolution.SharePoint2013Ent.csproj | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj index 27740b68..f908d582 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj +++ b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj @@ -47,17 +47,21 @@ - ..\..\Bin\WebsitePanel.Providers.Base.dll + + {684C932A-6C75-46AC-A327-F3689D89EB42} + WebsitePanel.Providers.Base False - - - ..\WebsitePanel.Server\bin\WebsitePanel.Providers.HostedSolution.dll + + + {A06DE5E4-4331-47E1-8F46-7B846146B559} + WebsitePanel.Providers.HostedSolution False - - - ..\WebsitePanel.Server.Utils\bin\Debug\WebsitePanel.Server.Utils.dll + + + {E91E52F3-9555-4D00-B577-2B1DBDD87CA7} + WebsitePanel.Server.Utils False - + From 8d03ff3c145b52d6b9272aab9c793ae53d49cced Mon Sep 17 00:00:00 2001 From: Virtuworks Date: Sun, 5 Apr 2015 09:44:00 -0400 Subject: [PATCH 3/9] Fix issue with reference --- ...ebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj index f908d582..0d80844d 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj +++ b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent/WebsitePanel.Providers.HostedSolution.SharePoint2013Ent.csproj @@ -46,7 +46,6 @@ - {684C932A-6C75-46AC-A327-F3689D89EB42} WebsitePanel.Providers.Base From 1f55a768c29ec6510af54459fe7ba4850c7ba019 Mon Sep 17 00:00:00 2001 From: Virtuworks Date: Sun, 5 Apr 2015 09:53:16 -0400 Subject: [PATCH 4/9] Added tag build-2.1.0.643 for changeset d1f0e5178f7c From 8a7a5a5d8bcdc06e2f55e4202ee0ccdf3f43fc32 Mon Sep 17 00:00:00 2001 From: Virtuworks Date: Sun, 5 Apr 2015 10:19:29 -0400 Subject: [PATCH 5/9] Merge --- .../WebsitePanel.EnterpriseServer.Base.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj index ba6f30a1..9f9c3763 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj @@ -39,7 +39,7 @@ true full false - ..\WebsitePanel.EnterpriseServer\bin\ + ..\..\Bin\ DEBUG;TRACE prompt 4 @@ -49,7 +49,7 @@ none true - ..\WebsitePanel.EnterpriseServer\bin\ + ..\..\Bin\ TRACE prompt 4 From 6e585134eccb3e111002dd76990c525fd3592a80 Mon Sep 17 00:00:00 2001 From: Virtuworks Date: Sun, 5 Apr 2015 10:30:54 -0400 Subject: [PATCH 6/9] Merge --- .../WebsitePanel.EnterpriseServer.Base.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj index 9f9c3763..ba6f30a1 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/WebsitePanel.EnterpriseServer.Base.csproj @@ -39,7 +39,7 @@ true full false - ..\..\Bin\ + ..\WebsitePanel.EnterpriseServer\bin\ DEBUG;TRACE prompt 4 @@ -49,7 +49,7 @@ none true - ..\..\Bin\ + ..\WebsitePanel.EnterpriseServer\bin\ TRACE prompt 4 From 3a3b39e2df3fd219ba8255cd8361892fdab61a33 Mon Sep 17 00:00:00 2001 From: Virtuworks Date: Sun, 5 Apr 2015 10:49:29 -0400 Subject: [PATCH 7/9] Update Import Tool --- .../WebsitePanel.Import.Enterprise.csproj | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/WebsitePanel/Sources/Tools/WebsitePanel.Import.Enterprise/WebsitePanel.Import.Enterprise.csproj b/WebsitePanel/Sources/Tools/WebsitePanel.Import.Enterprise/WebsitePanel.Import.Enterprise.csproj index 32738387..79c35698 100644 --- a/WebsitePanel/Sources/Tools/WebsitePanel.Import.Enterprise/WebsitePanel.Import.Enterprise.csproj +++ b/WebsitePanel/Sources/Tools/WebsitePanel.Import.Enterprise/WebsitePanel.Import.Enterprise.csproj @@ -65,9 +65,6 @@ - - ..\..\WebsitePanel.EnterpriseServer\bin\WebsitePanel.EnterpriseServer.dll - ..\..\..\Bin\WebsitePanel.EnterpriseServer.Base.dll @@ -216,6 +213,12 @@ false + + + {59c7623a-5181-48a5-880a-c9b82b48f589} + WebsitePanel.EnterpriseServer + +