Skip to content

Commit

Permalink
Updated {Update} EXO Integration Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Oct 5, 2024
1 parent b4d8b9b commit 82bbfa1
Showing 1 changed file with 27 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -679,10 +679,12 @@
}
EXOMailboxFolderPermission 'EXOMailboxFolderPermission-admin:\Calendar'
{
Credential = $Credscredential;
Ensure = "Present";
Identity = "admin:\Calendar";
UserPermissions = @(MSFT_EXOMailboxFolderUserPermission {
ApplicationId = $ApplicationId
TenantId = $TenantId
CertificateThumbprint = $CertificateThumbprint
Ensure = "Present";
Identity = "admin:\Calendar";
UserPermissions = @(MSFT_EXOMailboxFolderUserPermission {
User = 'Default'
AccessRights = 'AvailabilityOnly'
}
Expand Down Expand Up @@ -825,7 +827,9 @@
}
EXOManagementScope 'EXOManagementScope-Test New DGs'
{
Credential = $Credscredential;
ApplicationId = $ApplicationId
TenantId = $TenantId
CertificateThumbprint = $CertificateThumbprint
Ensure = "Present";
Exclusive = $False;
Identity = "Test New DGs";
Expand All @@ -847,6 +851,24 @@
TenantId = $TenantId
CertificateThumbprint = $CertificateThumbprint
}
EXOMigrationEndpoint 'EXOMigrationEndpoint-testIMAP'
{
AcceptUntrustedCertificates = $True;
Authentication = "Basic";
ApplicationId = $ApplicationId
TenantId = $TenantId
CertificateThumbprint = $CertificateThumbprint
EndpointType = "IMAP";
Ensure = "Present";
Identity = "testIMAP";
MailboxPermission = "Admin";
MaxConcurrentIncrementalSyncs = "10";
MaxConcurrentMigrations = "20";
Port = 993;
RemoteServer = "gmail.com";
# value for security updated from Tls to None
Security = "None";
}
EXOMobileDeviceMailboxPolicy 'ConfigureMobileDeviceMailboxPolicy'
{
Name = "Default"
Expand Down

0 comments on commit 82bbfa1

Please sign in to comment.