Commit graph

8 commits

Author SHA1 Message Date
robvde
43b73aee66 Added the ability to stamp mailboxes with a mailbox plan as well as those
mailboxes that have no mailbox plan assigned yet.

The following SQL statement will 'upgrade' the user data to work with the new
exchange 2010 SP2 provider. Ensure you replace the variables with values that
matches your environment.

DECLARE  @NetBIOSDomain nvarchar(20)
DECLARE  @ExchangeOrgRoot nvarchar(256)

SET @NetBIOSDomain = 'MYDOMAIN'
SET @ExchangeOrgRoot = 'CN=First Organization,CN=Microsoft Exchange,CN=Services,
CN=Configuration,DC=mydomain,DC=local'

UPDATE ExchangeAccounts SET SamAccountName = @NetBIOSDomain+'\'+AccountName
WHERE AccountID IN  (SELECT AccountID FROM ExchangeAccounts
WHERE AccountType IN (3,7) AND SamAccountName = '')

INSERT INTO ServiceItemProperties (ItemID, PropertyName, PropertyValue)
(SELECT SP.ItemID, 'AddressBookPolicy',
PV = 'CN='+SP.PropertyValue+' Address Policy,CN=AddressBook Mailbox Policies,'
+ @ExchangeOrgRoot
FROM         ServiceItemProperties AS SP
WHERE     (PropertyName = 'OrganizationID') AND (ItemID IN
 (SELECT     ItemID
 FROM          ServiceItemProperties AS ServiceItemProperties_1
 WHERE      (PropertyName = 'GlobalAddressList') AND (PropertyValue <> ''))))

UPDATE SP SET PropertyValue='CN='+SP2.PropertyValue+' Rooms,CN=All Address Lists
,CN=Address Lists Container,'+@ExchangeOrgRoot
FROM ServiceItemProperties AS SP
JOIN ServiceItemProperties AS SP2 ON SP.ItemID = SP2.ItemID
AND SP.PropertyName='RoomsAddressList'
WHERE (SP2.PropertyName = 'OrganizationID') AND (SP2.ItemID IN
 (SELECT     ItemID
 FROM          ServiceItemProperties AS ServiceItemProperties_1
 WHERE      (PropertyName = 'GlobalAddressList') AND (PropertyValue <> '')))
2012-07-12 17:14:19 +04:00
robvde
37af5eceac More granularity to the available roles:
Available roles now in the platform: Administrator, Reseller, User, PlatformCSR,
PlatformHelpdesk, ResellerCSR, ResellerHelpdesk.

The platform CSR and Helpdesk are peer accounts on platform root level.

The names can be used within the  websitepanel_pages.config on Page and Module
level. On module level the roles can be specified on the viewRoles attribute and
readOnlyRoles attribute. When specifying the later all controls will be disabled
within the Modile, the viewRoles just show the page or not. When nothing
specified the page is just shown
2012-07-11 18:18:13 +04:00
robvde
0ba956b582 Added the ability to specify the PlanName and PlanDescription of the Add-ons
in the account summary template:

<table>
	<tbody>
        <ad:if test="#not(isnull(Plans[Space.PlanId]))#">
        <ad:if test="#notequals(Addons.Count,0)#">
		    <tr>
                <td class="Label">Add-on</td>
                <td class="Label">Quantity</td>
                <td class="Label">Purchase Date</td>
		    </tr>

            <ad:foreach collection="#Addons#" var="Addon" index="j">
                <tr>
                    <td>#Addons[j].PlanName#</td>
                    <td>#Addons[j].Quantity#</td>
                    <td>#Addons[j].PurchaseDate#</td>
                </tr>
            </ad:foreach>
            </ad:if>
        </ad:if>
	</tbody>
</table>
2012-07-10 13:50:56 +04:00
robvde
2f8a580846 Removed Exchange Hosted Edition
Important!:
Before updating ensure that there are no servers within the
with the WebsitePanel with ExchangeHostedEdition enabled/configured.
2012-07-08 09:04:14 +04:00
robvde
452fcb7f47 DNS SRV Record support. Only supported with MS DNS Provider 2012-07-04 13:18:58 +04:00
omara
5326d4ff26 Update Outercurve Copyright to 2012 in all files 2012-06-04 22:14:11 -04:00
Alejandro
bb347537af Microsoft SQL Server 2012 support
Upgraded: Database scripts install_db.sql and upload_db.sql in order to support MSSQL2012
Upgraded: Installer to allow setup WebsitePanel with MSSQL2012
Added: MsSqlServer2012.cs
2012-05-12 14:17:46 -04:00
ptsurbeleu
b03b0b373f Initial project's source code check-in. 2011-07-13 16:07:32 -07:00