Commit graph

45 commits

Author SHA1 Message Date
robvde
260e981140 Lync user plans aligned with Exchange mailbox plans 2012-08-10 16:12:59 +04:00
Virtuworks
e270bdc1eb Commit Changes from Robvde 2012-08-07 11:43:17 -04:00
robvde
4cbc7f0a68 1) Alter view tried to use column SubscriberNumber before it was created. I have moved alter table upwards.
2)	No alter procedure existed for SP GetUserByExchangeOrganizationIdInternally, only create procedure, I believe this is wrong.
2012-08-07 19:33:12 +04:00
debug
9a52ed5bb4 Updated update_db.sql 2012-08-07 15:59:45 +02:00
robvde
787c952b9a Fixed typo in update_db.sql 2012-08-06 22:34:41 +04:00
robvde
8841bbd6c3 page result restored, got lost somewhere
Subscriber Number for Users added. Search on Subscriber Number is still on the
to do list.
2012-08-06 21:57:04 +04:00
robvde
c4a835b92f GO forgotten fixed 2012-08-06 00:18:09 +04:00
robvde
3be20ebaa4 Approaches with mailbox plan changed: ServerAdmin and Reseller are able to
define global plans. The plans will accumulate through out the tree.

Various UI optimizations

Before defining global plans ensure you create a hosted organization for each
reseller. Spaces -> Hosted Organization -> New Organization
2012-08-05 23:16:48 +04:00
jretkowski
8707b6e1a6 Added: SmarterMail 10 registration for update.db script 2012-08-01 16:20:53 -07:00
jretkowski
9cff06039f Test Commit
Added: SmarterMail 10 to install.db script
2012-08-01 08:11:08 -07:00
robvde
268245d920 Fixed: Typo in AddExchangeMailboxPlan 2012-07-30 16:04:18 +04:00
robvde
72348041f0 Websitepanel user account lockout and state management added 2012-07-30 11:19:50 +04:00
robvde
008fc296d5 Policies extended with plan templates for Exchange and Lync
Automated provisioning of plans added when template plans are defined
Lync plan maintenance added
Ability to disable editing of lync plans within hosting plans
People picker adjusted for public folders, contact, and distribution liost
2012-07-29 12:39:55 +04:00
robvde
76f6ea43cf Fix on: If you want to add another user with some specific Public folders
permission during PF creation, it crashes with information that \user@domain.com
 does not exist. There is unwanted "\" character before user's UPN.

Fix on:  You can create new public folder, can see in Public Folder Management
Console that it was created OK, with correct implicit rights (Anonymous = Create
 items, Default = None, my.hosted.org = Reviewer). But you are not able to see
 this Public Folder in WebsitePanel. Cannot add other accounts because there is
 nothing to choose.

 Applied fix:
 if account contains a '@' no '\' will be applied

 GetExchangeAccounts sp modified: LEFT OUTER JOIN instead of INNER JOIN
2012-07-25 23:22:54 +04:00
robvde
814bf5e35d Fixed: The first mailbox or lync plan is set as default
Error message was missing when deleting an already allocated mailboxplan
2012-07-18 20:17:50 +04:00
robvde
702084c672 Following fixed and added:
User general settings added to the mailbox details tab
FirstName, Lastname added to the create user and mailbox forms
DisplayName is generated and editable based on provided first and last name
Issue fixed with mailbox details to show "[None]" if user has no plan assigned
Option added to the hosting plan to enable or disable the maintenance of
mailboxplans by tenants.
2012-07-15 14:23:01 +04:00
robvde
ed4920f53a Various errors fixed in database scripts
Updated.exe added again to the project, path was corrupted
2012-07-13 12:02:47 +04:00
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
3c3374d8ae ResourceGroups updated with ShowGRoup field. By setting this field to zero
the resourcegroup will not show up. This is typically done to hide those
providers from an deployment you dont want to support.

To remove items from the search list set the Searchable field to 'False' in
ServiceItemTypes
2012-07-10 13:10:33 +04:00
robvde
a240fcebc6 Lync Server 2010 Multitenant Core Unified Communications Support Added
Enterprise voice support to follow soon
2012-07-10 11:19:55 +04:00
robvde
50f2c43315 Significant amount of changes to hosted organizations and exchange:
Exchange 2010 SP2 provisioning separated through a new provider
Exchange 2010 SP2 now compliant with product group guidelines
Support for Database Availability Group
Fixed Distribution List view scope to only tenant
Consumer support (individual mailboxes as hotmail) added
Mailbox configuration moved to mailbox plans concept
CN creation is now based on UPN
sAMAccountName generation revised and decoupled from tenant name
2007 (ACL Based), 2010 (ACL Bases), 2010 SP2 (ABP) supported
Automated Hosted Organization provisioning added to create hosting space
Enterprise Server webservice extended with ImportMethod
Mobile tab fixed
Added more information to users listview
2012-07-09 12:03:24 +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
2e334afcdf Violation of Primary Key contraint on UserSettings fixed 2012-07-04 23:07:28 +04:00
robvde
2a44c64e40 Column verification added before extending an existing table 2012-07-04 18:57:33 +04:00
robvde
c958211ce7 COLLOCATE DATABASE_DEFAULT replaced with Latin1_General1_CI_AS 2012-07-04 18:09:25 +04:00
robvde
b4f4c36bfd HostedSharePoint.Sites set to type 2
Quota.HostedSharePoint.UseSharedSSL added to sharedresources
2012-07-04 13:42:46 +04:00
robvde
452fcb7f47 DNS SRV Record support. Only supported with MS DNS Provider 2012-07-04 13:18:58 +04:00
robvde
a327e27e15 Sharepoint Shared SSL Root Quota integrated 2012-07-04 07:38:12 +04:00
robvde
a0d9e59db2 Updated Hosted Sharepoing Provider (Foundation 2010):
A) Powershell support added within the provider
B) Now returns the actual deployed language packs
C) The PeoplePicker points to the organization OU and shows only the users from
the tentant organization. A requirement when used with Exchange 2010 SP2
Addressbook Policies
D) Shared SSL root added to use wild card certificates as part of hosting plan.
When enabled the host name is generated.
E) Search fix: Provisioning of localhost file where the server component is
active. This system expected to be the search server. Within the local hostfile
the sites are listed with their local ip address so the search server can resolve
the site and crawl through their data.

This component needs to be compiled with .NET 2.0 together with Provers.Base,
OS.Windows2003, OS.Windows2008, Server.Utils, and Server components.

Out standing is to update the build and deployment package for a dedicated
 deployment packaged so this component is using .NET 2.0, all other should be
 using .NET 4.0. This will eliminate the configuration circus that was required
 to get the .NET 4.0 version of this component working previously.
2012-07-01 08:24:49 +04:00
administrator
90219f284f Fix issue in install_db.sql where it was not properly creating Stored Procedures UpdateServiceProperties and GetDNSRecordsTotal in Version 1.2.2.1 2012-06-09 08:19:37 -04:00
omara
b359541e82 Commit Changes from DanVB to Main 2012-06-04 20:20:22 -04:00
Dan
0d19fbf3dd A new solution for commit "ea82271b61ea" to fix and add features to hMailServer but only to version 5 and up.
+ Fix workitem/255
2012-05-26 13:55:35 +01:00
omara
c3250bf553 Commit Changes for workitem 46 2012-05-24 21:06:32 -04:00
Daniel Grotjan
131fdca1b0 Added ability to specify log directory for Gene6FTP 2012-05-24 12:06:36 -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
Kenneth
e0829fed82 Workitem 46
Add variables into web site parking page template
2012-05-08 01:18:24 +02:00
feodor_fitsner
e8863fed2c Updated SQL scripts for 1.2.2 2012-04-17 09:07:52 -07:00
feodor_fitsner
58b073a6aa Updated update_db.sql with SmarterMail 9 provider. 2011-12-12 09:35:09 -08:00
feodor_fitsner
1a1dcd3d45 Merge SM 9 into "dev" 2011-12-12 09:26:20 -08:00
Grzegorz
a43d788ff7 SmarterMail 9.x support 2011-12-12 15:24:04 +01:00
feodor_fitsner
113abfa6e1 Merged with default 2011-11-21 18:24:04 -08:00
feodor_fitsner
69316c22d0 Added MySQL 5.5 provider 2011-11-21 18:09:39 -08:00
Grzegorz
663995eac7 Added support for MySQL 5.5. All changes has been found on Sourceforge/WSP forums 2011-10-31 14:40:09 +01:00
ptsurbeleu
a603a38b05 Items being checked-in:
- Refreshed install_db.sql file with v1.2.0 db model;
 - Cleaned up update_db.sql for the next version;
2011-07-14 17:33:17 -07:00
ptsurbeleu
b03b0b373f Initial project's source code check-in. 2011-07-13 16:07:32 -07:00