From f7de1664094beb40d136398aed638ffe7c6028d6 Mon Sep 17 00:00:00 2001 From: dev_amdtel Date: Thu, 16 Oct 2014 03:50:22 +0400 Subject: [PATCH] fix exchange 2013 public folders --- .../Exchange2013.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs index 730de2fa..16de69ee 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs +++ b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Exchange2013/Exchange2013.cs @@ -4402,6 +4402,10 @@ namespace WebsitePanel.Providers.HostedSolution if (mailEnabled) { EnableMailPublicFolderInternal(organizationId, id, accountName, name, domain); + + // exchange transport needs access to create new items in order to deliver email + AddPublicFolderClientPermission(runSpace, parentFolder, "Anonymous", "CreateItems"); + AddPublicFolderClientPermission(runSpace, id, "Anonymous", "CreateItems"); } }