-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExchange_TimeBasedInboxRule.ps1
155 lines (149 loc) · 4.74 KB
/
Exchange_TimeBasedInboxRule.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# just testing...
# connect to exchange online
# Connect-Exchange -Online -Credential (Get-Credential)
#
# update rule daily (scheduled task)
# Get-InboxRule -Mailbox tom -Identity move_night |
# Set-InboxRule
#-ExceptIfReceivedAfterDate (Get-Date 06:00)
#-ExceptIfReceivedBeforeDate (Get-Date 15:00)
#
#Get-Mailbox tom | New-OffHoursFolder -Name "_offhours" -Verbose
#Get-Mailbox tom | Get-OffHoursFolder -Name night
#Get-Mailbox tom | Get-OffHoursRule -Name _offhours
#Get-Mailbox tom | New-OffHoursRule -Name move_offhours -MoveToFolder _offhours -StartTime 08:00 -EndTime 17:00 -Verbose
#
function Connect-Exchange
{
[CmdletBinding()]
Param
(
# Credential used for connection
[Parameter(Mandatory=$true)]
[pscredential]
$Credential
)
$params = @{
ConnectionUri = "https://outlook.office365.com/powershell-liveid/";
ConfigurationName = "Microsoft.Exchange";
Credential = $Credential;
Authentication = "Basic";
AllowRedirection = $true;
}
try {
Write-Verbose "Trying to connect to $($params.ConnectionUri)"
$sExch = New-PSSession @params -ErrorAction Stop -ErrorVariable ExchangeSessionError -Verbose:$false
Import-PSSession $sExch
} catch {
Write-Warning "Could not connect to Exchange $($ExchangeSessionError.ErrorRecord)"
}
}
# Returns Inbox Rule for a Mailbox
# If rulename or mailbox not found, returns nothing
function Get-OffHoursRule {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline=$true)]
[ValidateNotNullOrEmpty()]
[string]
$Mailbox,
[ValidateNotNullOrEmpty()]
[string]
$Name
)
process {
Get-InboxRule -Mailbox $mailbox -Identity $Name -ErrorAction SilentlyContinue
}
}
function New-OffHoursRule {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline=$true)]
[ValidateNotNullOrEmpty()]
$Mailbox,
[ValidateNotNullOrEmpty()]
[string]
$Name,
[ValidateNotNullOrEmpty()]
[string]
$MoveToFolder,
$StartTime,
$EndTime
)
process {
# Check if target folder already exists
$mbxFolder = Get-OffHoursFolder -Mailbox $Mailbox -Name $MoveToFolder
# Create folder if doesn't exist
if(-not($mbxFolder)){
$mbxFolder = New-OffHoursFolder -Mailbox $Mailbox -Name $MoveToFolder
}
# create folder id string in format: mailbox:\foldername
$folderId = $Mailbox.Identity,$mbxFolder.Name -join ":\"
Write-Verbose "Folder Id is $folderId"
# Create Rule
if(-not(Get-OffHoursRule -Mailbox $Mailbox -Name $Name)){
$params = @{
Mailbox = $Mailbox;
Name = $Name;
ExceptIfReceivedAfterDate = (Get-Date $StartTime).ToUniversalTime();
ExceptIfReceivedBeforeDate = (Get-Date $EndTime).ToUniversalTime();
MoveToFolder = $folderId;
}
Write-Verbose "Create Rule $Name in Mailbox $Mailbox"
Write-Verbose "Move mails before $StartTime and after $EndTime to folder: $FolderId"
New-InboxRule @params
}
}
}
function Update-OffHoursRule {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline=$true)]
[ValidateNotNullOrEmpty()]
$Mailbox,
$Name,
$StartTime,
$EndTime
)
process {
$params = @{
ExceptIfReceivedAfterDate = (Get-Date $StartTime).ToUniversalTime();
ExceptIfReceivedBeforeDate = (Get-Date $EndTime).ToUniversalTime();
}
Get-OffHoursRule -Mailbox $Mailbox -Name $Name | Set-InboxRule @params
}
}
function Get-OffHoursFolder {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline=$true)]
[ValidateNotNullOrEmpty()]
[string]
$Mailbox,
[ValidateNotNullOrEmpty()]
[string]
$Name
)
process {
Get-MailboxFolder -Identity "$Mailbox`:\$Name" -ErrorAction SilentlyContinue
}
}
function New-OffHoursFolder {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline=$true)]
[ValidateNotNullOrEmpty()]
[string]
$Mailbox,
[ValidateNotNullOrEmpty()]
[string]
$Name
)
process {
if(Get-MailboxFolder -Identity "$Mailbox`:\$Name" -ErrorAction SilentlyContinue) {
Write-Verbose "Folder $Name exists in Mailbox $($Mailbox.Identity)"
} else {
New-MailboxFolder -Parent $Mailbox -Name $Name
}
}
}