summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingEventDescriptionType.php
blob: 5ed814bb54be22243d7e6280520abd41681551aa (plain) (blame)
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\MessageTrackingEventDescriptionType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Class description...
 *
 * @package php-ews\Enumeration
 */
class MessageTrackingEventDescriptionType extends Enumeration
{
    /**
     * Indicates the event is for a message that has been approved.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const APPROVED_MODERATION = 'ApprovedModeration';

    /**
     * Indicates the event is for a message that has been delayed after
     * transferring to a partner organization.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const DELAYED_AFTER_TRANSFER_TO_PARTNER_ORG = 'DelayedAfterTransferToPartnerOrg';

    /**
     * Indicates the event is for a delivered message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const DELIVERED = 'Delivered';

    /**
     * Indicates the event is for an expanded message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const EXPANDED = 'Expanded';

    /**
     * Indicates the event is for a message that failed with a general error.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FAILED_GENERAL = 'FailedGeneral';

    /**
     * Indicates the event is for a message that failed moderation.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FAILED_MODERATION = 'FailedModeration';

    /**
     * Indicates the event is for a message that failed transport rules.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FAILED_TRANSPORT_RULES = 'FailedTransportRules';

    /**
     * Indicates the event is for a forwarded message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FORWARDED = 'Forwarded';

    /**
     * Indicates the event is for a message that was deferred.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const MESSAGE_DEFER = 'MessageDefer';

    /**
     * Indicates the event is for a message that was moved by an inbox rule.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const MOVED_TO_FOLDER_BY_INBOX_RULE = 'MovedToFolderByInboxRule';

    /**
     * Indicates the event is for a not read message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const NOT_READ = 'NotRead';

    /**
     * Indicates the event is for a pending message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const PENDING = 'Pending';

    /**
     * Indicates the event is for a message pending moderation.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const PENDING_MODERATION = 'PendingModeration';

    /**
     * Indicates the event is for a message that was queued to be retried.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const QUEUE_RETRY = 'QueueRetry';

    /**
     * Indicates the event is for a queued to be retried without a time.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const QUEUE_RETRY_NO_RETRY_TIME = 'QueueRetryNoRetryTime';

    /**
     * Indicates the event is for a read message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const READ = 'Read';

    /**
     * Indicates the event is for a resolved message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const RESOLVED = 'Resolved';

    /**
     * Indicates the event is for a message that was CCed by a rule.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const RULES_CC = 'RulesCc';

    /**
     * Indicates the event is for a message that was received via SMTP.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const SMTP_RECEIVE = 'SmtpReceive';

    /**
     * Indicates the event is for a message that was sent via SMTP.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const SMTP_SEND = 'SmtpSend';

    /**
     * Indicates the event is for a message that was sent cross forest via SMTP.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const SMTP_SEND_CROSS_FOREST = 'SmtpSendCrossForest';

    /**
     * Indicates the event is for a message that was sent cross site via SMTP.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const SMTP_SEND_CROSS_SITE = 'SmtpSendCrossSite';

    /**
     * Indicates the event is for a submitted message.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const SUBMITTED = 'Submitted';

    /**
     * Indicates the event is for a message that was transferred to a foreign
     * organization.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const TRANSFERRED_TO_FOREIGN_ORG = 'TransferredToForeignOrg';

    /**
     * Indicates the event is for a message that was transferred to a legacy
     * exchange server.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const TRANSFERRED_TO_LEGACY_EXCHANGE_SERVER = 'TransferredToLegacyExchangeServer';

    /**
     * Indicates the event is for a message that was transferred to a partner
     * organization.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const TRANSFERRED_TO_PARTNER_ORG = 'TransferredToPartnerOrg';
}