Skip to content

Commit

Permalink
Merge pull request #4235 from NikCharlebois/Integration
Browse files Browse the repository at this point in the history
Fixes Integration Tests for EXO
  • Loading branch information
NikCharlebois authored Jan 23, 2024
2 parents bac871a + 0be598d commit 7de1a59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Configuration Example
)
Import-DscResource -ModuleName Microsoft365DSC

$Domain = $Credscredential.Username.Split('@')[1]
node localhost
{
EXOAntiPhishRule 'ConfigureAntiPhishRule'
Expand All @@ -25,7 +26,7 @@ Configuration Example
AntiPhishPolicy = "Our Rule"
RecipientDomainIs = $null
Enabled = $True
SentToMemberOf = @("[email protected]")
SentToMemberOf = @("executives@c$Domain")
Priority = 1
Ensure = "Present"
Credential = $Credscredential
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Configuration Example
)
Import-DscResource -ModuleName Microsoft365DSC

$Domain = $Credscredential.Username.Split('@')[1]
node localhost
{
EXOAntiPhishRule 'ConfigureAntiPhishRule'
Expand All @@ -25,7 +26,7 @@ Configuration Example
AntiPhishPolicy = "Our Rule"
RecipientDomainIs = $null
Enabled = $True
SentToMemberOf = @("[email protected]")
SentToMemberOf = @("executives@c$Domain")
Priority = 2 # Updated Property
Ensure = "Present"
Credential = $Credscredential
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Configuration Example
)
Import-DscResource -ModuleName Microsoft365DSC

$Domain = $Credscredential.Username.Split('@')[1]
node localhost
{
$Domain = $Credscredential.Username.Split('@')[1]
EXOCalendarProcessing "CalendarProcessing"
{
AddAdditionalResponse = $False;
Expand Down

0 comments on commit 7de1a59

Please sign in to comment.