|
1
|
|
|
<?php |
|
2
|
|
|
/* |
|
3
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only |
|
4
|
|
|
* SPDX-FileCopyrightText: Copyright 2025 grommunio GmbH |
|
5
|
|
|
*/ |
|
6
|
|
|
|
|
7
|
|
|
class resource {} |
|
8
|
|
|
|
|
9
|
|
|
/** |
|
10
|
|
|
* @param ?int $level |
|
11
|
|
|
* @return void |
|
12
|
|
|
*/ |
|
13
|
|
|
function mapi_load_mapidefs(?int $level): void { |
|
14
|
|
|
return ; |
|
15
|
|
|
} |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* @return int |
|
19
|
|
|
*/ |
|
20
|
|
|
function mapi_last_hresult(): int { |
|
21
|
|
|
return 0; |
|
22
|
|
|
} |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* @param int $proptag |
|
26
|
|
|
* @return int|bool |
|
27
|
|
|
*/ |
|
28
|
|
|
function mapi_prop_type(int $proptag): int|bool { |
|
29
|
|
|
return 0; |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @param int $proptag |
|
34
|
|
|
* @return int|bool |
|
35
|
|
|
*/ |
|
36
|
|
|
function mapi_prop_id(int $proptag): int|bool { |
|
37
|
|
|
return 0; |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* @param int $errcode |
|
42
|
|
|
* @return bool |
|
43
|
|
|
*/ |
|
44
|
|
|
function mapi_is_error(int $errcode): bool { |
|
45
|
|
|
return false; |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
/** |
|
49
|
|
|
* @param int $sev |
|
50
|
|
|
* @param int $code |
|
51
|
|
|
* @return int|bool |
|
52
|
|
|
*/ |
|
53
|
|
|
function mapi_make_scode(int $sev, int $code): int|bool { |
|
54
|
|
|
return 0; |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* @param int $proptype |
|
59
|
|
|
* @param int $propid |
|
60
|
|
|
* @return int|bool |
|
61
|
|
|
*/ |
|
62
|
|
|
function mapi_prop_tag(int $proptype, int $propid): int|bool { |
|
63
|
|
|
return 0; |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
/** |
|
67
|
|
|
* @param ?string $displayname |
|
68
|
|
|
* @param string $type |
|
69
|
|
|
* @param string $address |
|
70
|
|
|
* @param ?int $flags |
|
71
|
|
|
* @return string|bool |
|
72
|
|
|
*/ |
|
73
|
|
|
function mapi_createoneoff(?string $displayname, string $type, string $address, ?int $flags = 0): string|bool { |
|
74
|
|
|
return ''; |
|
75
|
|
|
} |
|
76
|
|
|
|
|
77
|
|
|
/** |
|
78
|
|
|
* @param string $entryid |
|
79
|
|
|
* @return array|bool |
|
80
|
|
|
*/ |
|
81
|
|
|
function mapi_parseoneoff(string $entryid): array|bool { |
|
82
|
|
|
return []; |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
/** |
|
86
|
|
|
* @param string $username |
|
87
|
|
|
* @param string $password |
|
88
|
|
|
* @param ?string $server |
|
89
|
|
|
* @param ?string $sslcert |
|
90
|
|
|
* @param ?string $sslpass |
|
91
|
|
|
* @param ?int $flags |
|
92
|
|
|
* @param ?string $wa_version |
|
93
|
|
|
* @param ?string $misc_version |
|
94
|
|
|
* @return resource|bool |
|
95
|
|
|
*/ |
|
96
|
|
|
function mapi_logon_zarafa(string $username, string $password, ?string $server = null, ?string $sslcert = null, ?string $sslpass = null, ?int $flags = 0, ?string $wa_version = null, ?string $misc_version = null): resource|bool { |
|
97
|
|
|
return new resource(); |
|
98
|
|
|
} |
|
99
|
|
|
|
|
100
|
|
|
/** |
|
101
|
|
|
* @param string $username |
|
102
|
|
|
* @param string $password |
|
103
|
|
|
* @param int $flags |
|
104
|
|
|
* @return resource|bool |
|
105
|
|
|
*/ |
|
106
|
|
|
function mapi_logon_ex(string $username, string $password, int $flags): resource|bool { |
|
107
|
|
|
return new resource(); |
|
108
|
|
|
} |
|
109
|
|
|
|
|
110
|
|
|
/** |
|
111
|
|
|
* @param string $username |
|
112
|
|
|
* @param int $flags |
|
113
|
|
|
* @return resource|bool |
|
114
|
|
|
*/ |
|
115
|
|
|
function mapi_logon_np(string $username, int $flags): resource|bool { |
|
116
|
|
|
return new resource(); |
|
117
|
|
|
} |
|
118
|
|
|
|
|
119
|
|
|
/** |
|
120
|
|
|
* @param string $token |
|
121
|
|
|
* @return resource|bool |
|
122
|
|
|
*/ |
|
123
|
|
|
function mapi_logon_token(string $token): resource|bool { |
|
124
|
|
|
return new resource(); |
|
125
|
|
|
} |
|
126
|
|
|
|
|
127
|
|
|
/** |
|
128
|
|
|
* @param resource $session |
|
129
|
|
|
* @return resource|bool |
|
130
|
|
|
*/ |
|
131
|
|
|
function mapi_getmsgstorestable(resource $session): resource|bool { |
|
132
|
|
|
return new resource(); |
|
133
|
|
|
} |
|
134
|
|
|
|
|
135
|
|
|
/** |
|
136
|
|
|
* @param resource $ses |
|
137
|
|
|
* @param string $entryid |
|
138
|
|
|
* @return resource|bool |
|
139
|
|
|
*/ |
|
140
|
|
|
function mapi_openmsgstore(resource $ses, string $entryid): resource|bool { |
|
141
|
|
|
return new resource(); |
|
142
|
|
|
} |
|
143
|
|
|
|
|
144
|
|
|
/** |
|
145
|
|
|
* @param resource $ses |
|
146
|
|
|
* @param string $uid |
|
147
|
|
|
* @return resource|bool |
|
148
|
|
|
*/ |
|
149
|
|
|
function mapi_openprofilesection(resource $ses, string $uid): resource|bool { |
|
150
|
|
|
return new resource(); |
|
151
|
|
|
} |
|
152
|
|
|
|
|
153
|
|
|
/** |
|
154
|
|
|
* @param resource $session |
|
155
|
|
|
* @return resource|bool |
|
156
|
|
|
*/ |
|
157
|
|
|
function mapi_openaddressbook(resource $session): resource|bool { |
|
158
|
|
|
return new resource(); |
|
159
|
|
|
} |
|
160
|
|
|
|
|
161
|
|
|
/** |
|
162
|
|
|
* @param resource $ses |
|
163
|
|
|
* @param ?string $entryid |
|
164
|
|
|
* @param ?int $flags |
|
165
|
|
|
* @return resource|bool |
|
166
|
|
|
*/ |
|
167
|
|
|
function mapi_openentry(resource $ses, ?string $entryid = null, ?int $flags = 0): resource|bool { |
|
168
|
|
|
return new resource(); |
|
169
|
|
|
} |
|
170
|
|
|
|
|
171
|
|
|
/** |
|
172
|
|
|
* @param resource $abk |
|
173
|
|
|
* @param ?string $entryid |
|
174
|
|
|
* @param ?int $flags |
|
175
|
|
|
* @return resource|bool |
|
176
|
|
|
*/ |
|
177
|
|
|
function mapi_ab_openentry(resource $abk, ?string $entryid = null, ?int $flags = 0): resource|bool { |
|
178
|
|
|
return new resource(); |
|
179
|
|
|
} |
|
180
|
|
|
|
|
181
|
|
|
/** |
|
182
|
|
|
* @param resource $abk |
|
183
|
|
|
* @param array $names |
|
184
|
|
|
* @param ?int $flags |
|
185
|
|
|
* @return mixed |
|
186
|
|
|
*/ |
|
187
|
|
|
function mapi_ab_resolvename(resource $abk, array $names, ?int $flags = 0): mixed { |
|
188
|
|
|
return null; |
|
189
|
|
|
} |
|
190
|
|
|
|
|
191
|
|
|
/** |
|
192
|
|
|
* @param resource $abk |
|
193
|
|
|
* @return string|bool |
|
194
|
|
|
*/ |
|
195
|
|
|
function mapi_ab_getdefaultdir(resource $abk): string|bool { |
|
196
|
|
|
return ''; |
|
197
|
|
|
} |
|
198
|
|
|
|
|
199
|
|
|
/** |
|
200
|
|
|
* @param resource $store |
|
201
|
|
|
* @param string $mailbox_dn |
|
202
|
|
|
* @return string|bool |
|
203
|
|
|
*/ |
|
204
|
|
|
function mapi_msgstore_createentryid(resource $store, string $mailbox_dn): string|bool { |
|
205
|
|
|
return ''; |
|
206
|
|
|
} |
|
207
|
|
|
|
|
208
|
|
|
/** |
|
209
|
|
|
* @param resource $store |
|
210
|
|
|
* @param string $user |
|
211
|
|
|
* @param string $server |
|
212
|
|
|
* @return bool |
|
213
|
|
|
*/ |
|
214
|
|
|
function mapi_msgstore_getarchiveentryid(resource $store, string $user, string $server): bool { |
|
215
|
|
|
return false; |
|
216
|
|
|
} |
|
217
|
|
|
|
|
218
|
|
|
/** |
|
219
|
|
|
* @param resource $store |
|
220
|
|
|
* @param ?string $entryid |
|
221
|
|
|
* @param ?int $flags |
|
222
|
|
|
* @return resource|bool |
|
223
|
|
|
*/ |
|
224
|
|
|
function mapi_msgstore_openentry(resource $store, ?string $entryid = null, ?int $flags = 0): resource|bool { |
|
225
|
|
|
return new resource(); |
|
226
|
|
|
} |
|
227
|
|
|
|
|
228
|
|
|
/** |
|
229
|
|
|
* @param resource $store |
|
230
|
|
|
* @return resource|bool |
|
231
|
|
|
*/ |
|
232
|
|
|
function mapi_msgstore_getreceivefolder(resource $store): resource|bool { |
|
233
|
|
|
return new resource(); |
|
234
|
|
|
} |
|
235
|
|
|
|
|
236
|
|
|
/** |
|
237
|
|
|
* @param resource $store |
|
238
|
|
|
* @param string $sk_fld |
|
239
|
|
|
* @param ?string $sk_msg |
|
240
|
|
|
* @return string|bool |
|
241
|
|
|
*/ |
|
242
|
|
|
function mapi_msgstore_entryidfromsourcekey(resource $store, string $sk_fld, ?string $sk_msg = null): string|bool { |
|
243
|
|
|
return ''; |
|
244
|
|
|
} |
|
245
|
|
|
|
|
246
|
|
|
/** |
|
247
|
|
|
* @param resource $store |
|
248
|
|
|
* @param string $entryid |
|
249
|
|
|
* @param int $event_mask |
|
250
|
|
|
* @param resource $sink |
|
251
|
|
|
* @return int|bool |
|
252
|
|
|
*/ |
|
253
|
|
|
function mapi_msgstore_advise(resource $store, string $entryid, int $event_mask, resource $sink): int|bool { |
|
254
|
|
|
return 0; |
|
255
|
|
|
} |
|
256
|
|
|
|
|
257
|
|
|
/** |
|
258
|
|
|
* @param resource $store |
|
259
|
|
|
* @param int $sub_id |
|
260
|
|
|
* @return bool |
|
261
|
|
|
*/ |
|
262
|
|
|
function mapi_msgstore_unadvise(resource $store, int $sub_id): bool { |
|
263
|
|
|
return false; |
|
264
|
|
|
} |
|
265
|
|
|
|
|
266
|
|
|
/** |
|
267
|
|
|
* @param ?resource $store |
|
268
|
|
|
* @param ?string $entryid |
|
269
|
|
|
* @return bool |
|
270
|
|
|
*/ |
|
271
|
|
|
function mapi_msgstore_abortsubmit(?resource $store, ?string $entryid = null): bool { |
|
272
|
|
|
return false; |
|
273
|
|
|
} |
|
274
|
|
|
|
|
275
|
|
|
/** |
|
276
|
|
|
* @return resource|bool |
|
277
|
|
|
*/ |
|
278
|
|
|
function mapi_sink_create(): resource|bool { |
|
279
|
|
|
return new resource(); |
|
280
|
|
|
} |
|
281
|
|
|
|
|
282
|
|
|
/** |
|
283
|
|
|
* @param resource $sink |
|
284
|
|
|
* @param int $time |
|
285
|
|
|
* @return mixed |
|
286
|
|
|
*/ |
|
287
|
|
|
function mapi_sink_timedwait(resource $sink, int $time): mixed { |
|
288
|
|
|
return null; |
|
289
|
|
|
} |
|
290
|
|
|
|
|
291
|
|
|
/** |
|
292
|
|
|
* @param resource $table |
|
293
|
|
|
* @param ?array $proptags |
|
294
|
|
|
* @param ?array $restrict |
|
295
|
|
|
* @return mixed |
|
296
|
|
|
*/ |
|
297
|
|
|
function mapi_table_queryallrows(resource $table, ?array $proptags = null, ?array $restrict = null): mixed { |
|
298
|
|
|
return null; |
|
299
|
|
|
} |
|
300
|
|
|
|
|
301
|
|
|
/** |
|
302
|
|
|
* @param resource $table |
|
303
|
|
|
* @param ?array $proptags |
|
304
|
|
|
* @param ?int $start |
|
305
|
|
|
* @param ?int $limit |
|
306
|
|
|
* @return mixed |
|
307
|
|
|
*/ |
|
308
|
|
|
function mapi_table_queryrows(resource $table, ?array $proptags = null, ?int $start = 0, ?int $limit = 0): mixed { |
|
309
|
|
|
return null; |
|
310
|
|
|
} |
|
311
|
|
|
|
|
312
|
|
|
/** |
|
313
|
|
|
* @param resource $table |
|
314
|
|
|
* @return int|bool |
|
315
|
|
|
*/ |
|
316
|
|
|
function mapi_table_getrowcount(resource $table): int|bool { |
|
317
|
|
|
return 0; |
|
318
|
|
|
} |
|
319
|
|
|
|
|
320
|
|
|
/** |
|
321
|
|
|
* @param resource $table |
|
322
|
|
|
* @param array $columns |
|
323
|
|
|
* @param ?int $flags |
|
324
|
|
|
* @return bool |
|
325
|
|
|
*/ |
|
326
|
|
|
function mapi_table_setcolumns(resource $table, array $columns, ?int $flags = 0): bool { |
|
327
|
|
|
return false; |
|
328
|
|
|
} |
|
329
|
|
|
|
|
330
|
|
|
/** |
|
331
|
|
|
* @param resource $table |
|
332
|
|
|
* @param int $bookmark |
|
333
|
|
|
* @param int $rowcount |
|
334
|
|
|
* @return int|bool |
|
335
|
|
|
*/ |
|
336
|
|
|
function mapi_table_seekrow(resource $table, int $bookmark, int $rowcount): int|bool { |
|
337
|
|
|
return 0; |
|
338
|
|
|
} |
|
339
|
|
|
|
|
340
|
|
|
/** |
|
341
|
|
|
* @param resource $table |
|
342
|
|
|
* @param array $sortcrit |
|
343
|
|
|
* @param ?int $flags |
|
344
|
|
|
* @return bool |
|
345
|
|
|
*/ |
|
346
|
|
|
function mapi_table_sort(resource $table, array $sortcrit, ?int $flags = 0): bool { |
|
347
|
|
|
return false; |
|
348
|
|
|
} |
|
349
|
|
|
|
|
350
|
|
|
/** |
|
351
|
|
|
* @param resource $table |
|
352
|
|
|
* @param array $restrict |
|
353
|
|
|
* @param ?int $flags |
|
354
|
|
|
* @return bool |
|
355
|
|
|
*/ |
|
356
|
|
|
function mapi_table_restrict(resource $table, array $restrict, ?int $flags = 0): bool { |
|
357
|
|
|
return false; |
|
358
|
|
|
} |
|
359
|
|
|
|
|
360
|
|
|
/** |
|
361
|
|
|
* @param resource $table |
|
362
|
|
|
* @param array $restrict |
|
363
|
|
|
* @param ?int $bookmark |
|
364
|
|
|
* @param ?int $flags |
|
365
|
|
|
* @return int|bool |
|
366
|
|
|
*/ |
|
367
|
|
|
function mapi_table_findrow(resource $table, array $restrict, ?int $bookmark = 0, ?int $flags = 0): int|bool { |
|
368
|
|
|
return 0; |
|
369
|
|
|
} |
|
370
|
|
|
|
|
371
|
|
|
/** |
|
372
|
|
|
* @param resource $table |
|
373
|
|
|
* @return int|bool |
|
374
|
|
|
*/ |
|
375
|
|
|
function mapi_table_createbookmark(resource $table): int|bool { |
|
376
|
|
|
return 0; |
|
377
|
|
|
} |
|
378
|
|
|
|
|
379
|
|
|
/** |
|
380
|
|
|
* @param resource $table |
|
381
|
|
|
* @param int $bookmark |
|
382
|
|
|
* @return bool |
|
383
|
|
|
*/ |
|
384
|
|
|
function mapi_table_freebookmark(resource $table, int $bookmark): bool { |
|
385
|
|
|
return false; |
|
386
|
|
|
} |
|
387
|
|
|
|
|
388
|
|
|
/** |
|
389
|
|
|
* @param resource $fld |
|
390
|
|
|
* @param ?int $flags |
|
391
|
|
|
* @return resource|bool |
|
392
|
|
|
*/ |
|
393
|
|
|
function mapi_folder_gethierarchytable(resource $fld, ?int $flags = 0): resource|bool { |
|
394
|
|
|
return new resource(); |
|
395
|
|
|
} |
|
396
|
|
|
|
|
397
|
|
|
/** |
|
398
|
|
|
* @param resource $fld |
|
399
|
|
|
* @param ?int $flags |
|
400
|
|
|
* @return resource|bool |
|
401
|
|
|
*/ |
|
402
|
|
|
function mapi_folder_getcontentstable(resource $fld, ?int $flags = 0): resource|bool { |
|
403
|
|
|
return new resource(); |
|
404
|
|
|
} |
|
405
|
|
|
|
|
406
|
|
|
/** |
|
407
|
|
|
* @param resource $fld |
|
408
|
|
|
* @return resource|bool |
|
409
|
|
|
*/ |
|
410
|
|
|
function mapi_folder_getrulestable(resource $fld): resource|bool { |
|
411
|
|
|
return new resource(); |
|
412
|
|
|
} |
|
413
|
|
|
|
|
414
|
|
|
/** |
|
415
|
|
|
* @param resource $fld |
|
416
|
|
|
* @param ?int $flags |
|
417
|
|
|
* @return resource|bool |
|
418
|
|
|
*/ |
|
419
|
|
|
function mapi_folder_createmessage(resource $fld, ?int $flags = 0): resource|bool { |
|
420
|
|
|
return new resource(); |
|
421
|
|
|
} |
|
422
|
|
|
|
|
423
|
|
|
/** |
|
424
|
|
|
* @param resource $fld |
|
425
|
|
|
* @param string $fname |
|
426
|
|
|
* @param ?string $comment |
|
427
|
|
|
* @param ?int $flags |
|
428
|
|
|
* @param ?int $folder_type |
|
429
|
|
|
* @return resource|bool |
|
430
|
|
|
*/ |
|
431
|
|
|
function mapi_folder_createfolder(resource $fld, string $fname, ?string $comment = null, ?int $flags = 0, ?int $folder_type = 0): resource|bool { |
|
432
|
|
|
return new resource(); |
|
433
|
|
|
} |
|
434
|
|
|
|
|
435
|
|
|
/** |
|
436
|
|
|
* @param resource $fld |
|
437
|
|
|
* @param array $entryids |
|
438
|
|
|
* @param ?int $flags |
|
439
|
|
|
* @return bool |
|
440
|
|
|
*/ |
|
441
|
|
|
function mapi_folder_deletemessages(resource $fld, array $entryids, ?int $flags = 0): bool { |
|
442
|
|
|
return false; |
|
443
|
|
|
} |
|
444
|
|
|
|
|
445
|
|
|
/** |
|
446
|
|
|
* @param resource $srcfld |
|
447
|
|
|
* @param array $entryids |
|
448
|
|
|
* @param resource $dstfld |
|
449
|
|
|
* @param ?int $flags |
|
450
|
|
|
* @return bool |
|
451
|
|
|
*/ |
|
452
|
|
|
function mapi_folder_copymessages(resource $srcfld, array $entryids, resource $dstfld, ?int $flags = 0): bool { |
|
453
|
|
|
return false; |
|
454
|
|
|
} |
|
455
|
|
|
|
|
456
|
|
|
/** |
|
457
|
|
|
* @param resource $fld |
|
458
|
|
|
* @param ?int $flags |
|
459
|
|
|
* @return bool |
|
460
|
|
|
*/ |
|
461
|
|
|
function mapi_folder_emptyfolder(resource $fld, ?int $flags = 0): bool { |
|
462
|
|
|
return false; |
|
463
|
|
|
} |
|
464
|
|
|
|
|
465
|
|
|
/** |
|
466
|
|
|
* @param resource $srcfld |
|
467
|
|
|
* @param string $entryid |
|
468
|
|
|
* @param resource $dstfld |
|
469
|
|
|
* @param ?string $name |
|
470
|
|
|
* @param ?int $flags |
|
471
|
|
|
* @return bool |
|
472
|
|
|
*/ |
|
473
|
|
|
function mapi_folder_copyfolder(resource $srcfld, string $entryid, resource $dstfld, ?string $name, ?int $flags = 0): bool { |
|
474
|
|
|
return false; |
|
475
|
|
|
} |
|
476
|
|
|
|
|
477
|
|
|
/** |
|
478
|
|
|
* @param resource $fld |
|
479
|
|
|
* @param string $entryid |
|
480
|
|
|
* @param ?int $flags |
|
481
|
|
|
* @return bool |
|
482
|
|
|
*/ |
|
483
|
|
|
function mapi_folder_deletefolder(resource $fld, string $entryid, ?int $flags = 0): bool { |
|
484
|
|
|
return false; |
|
485
|
|
|
} |
|
486
|
|
|
|
|
487
|
|
|
/** |
|
488
|
|
|
* @param resource $fld |
|
489
|
|
|
* @param array $entryids |
|
490
|
|
|
* @param ?int $flags |
|
491
|
|
|
* @return bool |
|
492
|
|
|
*/ |
|
493
|
|
|
function mapi_folder_setreadflags(resource $fld, array $entryids, ?int $flags = 0): bool { |
|
494
|
|
|
return false; |
|
495
|
|
|
} |
|
496
|
|
|
|
|
497
|
|
|
/** |
|
498
|
|
|
* @param resource $fld |
|
499
|
|
|
* @param array $restriction |
|
500
|
|
|
* @param array $folderlist |
|
501
|
|
|
* @param int $flags |
|
502
|
|
|
* @return bool |
|
503
|
|
|
*/ |
|
504
|
|
|
function mapi_folder_setsearchcriteria(resource $fld, array $restriction, array $folderlist, int $flags): bool { |
|
505
|
|
|
return false; |
|
506
|
|
|
} |
|
507
|
|
|
|
|
508
|
|
|
/** |
|
509
|
|
|
* @param resource $fld |
|
510
|
|
|
* @param ?int $flags |
|
511
|
|
|
* @return mixed |
|
512
|
|
|
*/ |
|
513
|
|
|
function mapi_folder_getsearchcriteria(resource $fld, ?int $flags = 0): mixed { |
|
514
|
|
|
return null; |
|
515
|
|
|
} |
|
516
|
|
|
|
|
517
|
|
|
/** |
|
518
|
|
|
* @param resource $fld |
|
519
|
|
|
* @param array $rows |
|
520
|
|
|
* @param ?int $flags |
|
521
|
|
|
* @return bool |
|
522
|
|
|
*/ |
|
523
|
|
|
function mapi_folder_modifyrules(resource $fld, array $rows, ?int $flags = 0): bool { |
|
524
|
|
|
return false; |
|
525
|
|
|
} |
|
526
|
|
|
|
|
527
|
|
|
/** |
|
528
|
|
|
* @param resource $msg |
|
529
|
|
|
* @return resource|bool |
|
530
|
|
|
*/ |
|
531
|
|
|
function mapi_message_getattachmenttable(resource $msg): resource|bool { |
|
532
|
|
|
return new resource(); |
|
533
|
|
|
} |
|
534
|
|
|
|
|
535
|
|
|
/** |
|
536
|
|
|
* @param resource $msg |
|
537
|
|
|
* @return resource|bool |
|
538
|
|
|
*/ |
|
539
|
|
|
function mapi_message_getrecipienttable(resource $msg): resource|bool { |
|
540
|
|
|
return new resource(); |
|
541
|
|
|
} |
|
542
|
|
|
|
|
543
|
|
|
/** |
|
544
|
|
|
* @param resource $msg |
|
545
|
|
|
* @param int $id |
|
546
|
|
|
* @return resource|bool |
|
547
|
|
|
*/ |
|
548
|
|
|
function mapi_message_openattach(resource $msg, int $id): resource|bool { |
|
549
|
|
|
return new resource(); |
|
550
|
|
|
} |
|
551
|
|
|
|
|
552
|
|
|
/** |
|
553
|
|
|
* @param resource $msg |
|
554
|
|
|
* @param ?int $flags |
|
555
|
|
|
* @return resource|bool |
|
556
|
|
|
*/ |
|
557
|
|
|
function mapi_message_createattach(resource $msg, ?int $flags = 0): resource|bool { |
|
558
|
|
|
return new resource(); |
|
559
|
|
|
} |
|
560
|
|
|
|
|
561
|
|
|
/** |
|
562
|
|
|
* @param resource $msg |
|
563
|
|
|
* @param int $id |
|
564
|
|
|
* @param ?int $flags |
|
565
|
|
|
* @return bool |
|
566
|
|
|
*/ |
|
567
|
|
|
function mapi_message_deleteattach(resource $msg, int $id = 0, ?int $flags = 0): bool { |
|
568
|
|
|
return false; |
|
569
|
|
|
} |
|
570
|
|
|
|
|
571
|
|
|
/** |
|
572
|
|
|
* @param resource $msg |
|
573
|
|
|
* @param int $flags |
|
574
|
|
|
* @param array $adrlist |
|
575
|
|
|
* @return bool |
|
576
|
|
|
*/ |
|
577
|
|
|
function mapi_message_modifyrecipients(resource $msg, int $flags, array $adrlist): bool { |
|
578
|
|
|
return false; |
|
579
|
|
|
} |
|
580
|
|
|
|
|
581
|
|
|
/** |
|
582
|
|
|
* @param resource $msg |
|
583
|
|
|
* @return bool |
|
584
|
|
|
*/ |
|
585
|
|
|
function mapi_message_submitmessage(resource $msg): bool { |
|
586
|
|
|
return false; |
|
587
|
|
|
} |
|
588
|
|
|
|
|
589
|
|
|
/** |
|
590
|
|
|
* @param resource $msg |
|
591
|
|
|
* @param int $flags |
|
592
|
|
|
* @return bool |
|
593
|
|
|
*/ |
|
594
|
|
|
function mapi_message_setreadflag(resource $msg, int $flags): bool { |
|
595
|
|
|
return false; |
|
596
|
|
|
} |
|
597
|
|
|
|
|
598
|
|
|
/** |
|
599
|
|
|
* @param resource $any |
|
600
|
|
|
* @param int $proptag |
|
601
|
|
|
* @param ?int $flags |
|
602
|
|
|
* @param ?string $guid |
|
603
|
|
|
* @return resource|bool |
|
604
|
|
|
*/ |
|
605
|
|
|
function mapi_openpropertytostream(resource $any, int $proptag, ?int $flags = 0, ?string $guid = null): resource|bool { |
|
606
|
|
|
return new resource(); |
|
607
|
|
|
} |
|
608
|
|
|
|
|
609
|
|
|
/** |
|
610
|
|
|
* @param resource $stream |
|
611
|
|
|
* @param string $data |
|
612
|
|
|
* @return int|bool |
|
613
|
|
|
*/ |
|
614
|
|
|
function mapi_stream_write(resource $stream, string $data): int|bool { |
|
615
|
|
|
return 0; |
|
616
|
|
|
} |
|
617
|
|
|
|
|
618
|
|
|
/** |
|
619
|
|
|
* @param resource $stream |
|
620
|
|
|
* @param int $size |
|
621
|
|
|
* @return string|bool |
|
622
|
|
|
*/ |
|
623
|
|
|
function mapi_stream_read(resource $stream, int $size): string|bool { |
|
624
|
|
|
return ''; |
|
625
|
|
|
} |
|
626
|
|
|
|
|
627
|
|
|
/** |
|
628
|
|
|
* @param resource $stream |
|
629
|
|
|
* @return array|bool |
|
630
|
|
|
*/ |
|
631
|
|
|
function mapi_stream_stat(resource $stream): array|bool { |
|
632
|
|
|
return []; |
|
633
|
|
|
} |
|
634
|
|
|
|
|
635
|
|
|
/** |
|
636
|
|
|
* @param resource $stream |
|
637
|
|
|
* @param int $offset |
|
638
|
|
|
* @param ?int $flags |
|
639
|
|
|
* @return bool |
|
640
|
|
|
*/ |
|
641
|
|
|
function mapi_stream_seek(resource $stream, int $offset, ?int $flags = 0): bool { |
|
642
|
|
|
return false; |
|
643
|
|
|
} |
|
644
|
|
|
|
|
645
|
|
|
/** |
|
646
|
|
|
* @param resource $stream |
|
647
|
|
|
* @return bool |
|
648
|
|
|
*/ |
|
649
|
|
|
function mapi_stream_commit(resource $stream): bool { |
|
650
|
|
|
return false; |
|
651
|
|
|
} |
|
652
|
|
|
|
|
653
|
|
|
/** |
|
654
|
|
|
* @param resource $stream |
|
655
|
|
|
* @param int $size |
|
656
|
|
|
* @return bool |
|
657
|
|
|
*/ |
|
658
|
|
|
function mapi_stream_setsize(resource $stream, int $size): bool { |
|
659
|
|
|
return false; |
|
660
|
|
|
} |
|
661
|
|
|
|
|
662
|
|
|
/** |
|
663
|
|
|
* @return resource|bool |
|
664
|
|
|
*/ |
|
665
|
|
|
function mapi_stream_create(): resource|bool { |
|
666
|
|
|
return new resource(); |
|
667
|
|
|
} |
|
668
|
|
|
|
|
669
|
|
|
/** |
|
670
|
|
|
* @param resource $attach |
|
671
|
|
|
* @param ?int $flags |
|
672
|
|
|
* @return resource|bool |
|
673
|
|
|
*/ |
|
674
|
|
|
function mapi_attach_openobj(resource $attach, ?int $flags = 0): resource|bool { |
|
675
|
|
|
return new resource(); |
|
676
|
|
|
} |
|
677
|
|
|
|
|
678
|
|
|
/** |
|
679
|
|
|
* @param resource $any |
|
680
|
|
|
* @param ?int $flags |
|
681
|
|
|
* @return bool |
|
682
|
|
|
*/ |
|
683
|
|
|
function mapi_savechanges(resource $any, ?int $flags = 0): bool { |
|
684
|
|
|
return false; |
|
685
|
|
|
} |
|
686
|
|
|
|
|
687
|
|
|
/** |
|
688
|
|
|
* @param resource $any |
|
689
|
|
|
* @param ?array $proptags |
|
690
|
|
|
* @return mixed |
|
691
|
|
|
*/ |
|
692
|
|
|
function mapi_getprops(resource $any, ?array $proptags = null): mixed { |
|
693
|
|
|
return null; |
|
694
|
|
|
} |
|
695
|
|
|
|
|
696
|
|
|
/** |
|
697
|
|
|
* @param resource $any |
|
698
|
|
|
* @param array $propvals |
|
699
|
|
|
* @return bool |
|
700
|
|
|
*/ |
|
701
|
|
|
function mapi_setprops(resource $any, array $propvals): bool { |
|
702
|
|
|
return false; |
|
703
|
|
|
} |
|
704
|
|
|
|
|
705
|
|
|
/** |
|
706
|
|
|
* @param resource $src |
|
707
|
|
|
* @param array $excliid |
|
708
|
|
|
* @param array $exclprop |
|
709
|
|
|
* @param resource $dst |
|
710
|
|
|
* @param ?int $flags |
|
711
|
|
|
* @return bool |
|
712
|
|
|
*/ |
|
713
|
|
|
function mapi_copyto(resource $src, array $excliid, array $exclprop, resource $dst, ?int $flags = 0): bool { |
|
714
|
|
|
return false; |
|
715
|
|
|
} |
|
716
|
|
|
|
|
717
|
|
|
/** |
|
718
|
|
|
* @param resource $any |
|
719
|
|
|
* @param int $proptag |
|
720
|
|
|
* @param ?string $iid |
|
721
|
|
|
* @param ?int $interfaceflags |
|
722
|
|
|
* @param ?int $flags |
|
723
|
|
|
* @return resource|bool |
|
724
|
|
|
*/ |
|
725
|
|
|
function mapi_openproperty(resource $any, int $proptag, ?string $iid = null, ?int $interfaceflags = 0, ?int $flags = 0): resource|bool { |
|
726
|
|
|
return new resource(); |
|
727
|
|
|
} |
|
728
|
|
|
|
|
729
|
|
|
/** |
|
730
|
|
|
* @param resource $any |
|
731
|
|
|
* @param array $proptags |
|
732
|
|
|
* @return bool |
|
733
|
|
|
*/ |
|
734
|
|
|
function mapi_deleteprops(resource $any, array $proptags): bool { |
|
735
|
|
|
return false; |
|
736
|
|
|
} |
|
737
|
|
|
|
|
738
|
|
|
/** |
|
739
|
|
|
* @param resource $any |
|
740
|
|
|
* @param ?array $names |
|
741
|
|
|
* @return array|bool |
|
742
|
|
|
*/ |
|
743
|
|
|
function mapi_getnamesfromids(resource $any, ?array $names = null): array|bool { |
|
744
|
|
|
return []; |
|
745
|
|
|
} |
|
746
|
|
|
|
|
747
|
|
|
/** |
|
748
|
|
|
* @param resource $store |
|
749
|
|
|
* @param array $names |
|
750
|
|
|
* @param ?array $guids |
|
751
|
|
|
* @return array|bool |
|
752
|
|
|
*/ |
|
753
|
|
|
function mapi_getidsfromnames(resource $store, array $names, ?array $guids = null): array|bool { |
|
754
|
|
|
return []; |
|
755
|
|
|
} |
|
756
|
|
|
|
|
757
|
|
|
/** |
|
758
|
|
|
* @param string $data |
|
759
|
|
|
* @return string|bool |
|
760
|
|
|
*/ |
|
761
|
|
|
function mapi_decompressrtf(string $data): string|bool { |
|
762
|
|
|
return ''; |
|
763
|
|
|
} |
|
764
|
|
|
|
|
765
|
|
|
/** |
|
766
|
|
|
* @param resource $any |
|
767
|
|
|
* @param int $type |
|
768
|
|
|
* @return array|bool |
|
769
|
|
|
*/ |
|
770
|
|
|
function mapi_zarafa_getpermissionrules(resource $any, int $type): array|bool { |
|
771
|
|
|
return []; |
|
772
|
|
|
} |
|
773
|
|
|
|
|
774
|
|
|
/** |
|
775
|
|
|
* @param resource $any |
|
776
|
|
|
* @param array $perms |
|
777
|
|
|
* @return bool |
|
778
|
|
|
*/ |
|
779
|
|
|
function mapi_zarafa_setpermissionrules(resource $any, array $perms): bool { |
|
780
|
|
|
return false; |
|
781
|
|
|
} |
|
782
|
|
|
|
|
783
|
|
|
/** |
|
784
|
|
|
* @param resource $ses |
|
785
|
|
|
* @param string $entryid |
|
786
|
|
|
* @param int $start |
|
787
|
|
|
* @param int $end |
|
788
|
|
|
* @return array|bool |
|
789
|
|
|
*/ |
|
790
|
|
|
function mapi_getuserfreebusy(resource $ses, string $entryid, int $start, int $end): array|bool { |
|
791
|
|
|
return []; |
|
792
|
|
|
} |
|
793
|
|
|
|
|
794
|
|
|
/** |
|
795
|
|
|
* @param resource $ses |
|
796
|
|
|
* @param string $entryid |
|
797
|
|
|
* @param int $start |
|
798
|
|
|
* @param int $end |
|
799
|
|
|
* @return string|bool |
|
800
|
|
|
*/ |
|
801
|
|
|
function mapi_getuserfreebusyical(resource $ses, string $entryid, int $start, int $end): string|bool { |
|
802
|
|
|
return ''; |
|
803
|
|
|
} |
|
804
|
|
|
|
|
805
|
|
|
/** |
|
806
|
|
|
* @param resource $e |
|
807
|
|
|
* @param resource $stream |
|
808
|
|
|
* @param int $flags |
|
809
|
|
|
* @param mixed $i |
|
810
|
|
|
* @param mixed $restrict |
|
811
|
|
|
* @param mixed $inclprop |
|
812
|
|
|
* @param mixed $exclprop |
|
813
|
|
|
* @param int $bufsize |
|
814
|
|
|
* @return bool |
|
815
|
|
|
*/ |
|
816
|
|
|
function mapi_exportchanges_config(resource $e, resource $stream, int $flags, mixed $i, mixed $restrict, mixed $inclprop, mixed $exclprop, int $bufsize): bool { |
|
817
|
|
|
return false; |
|
818
|
|
|
} |
|
819
|
|
|
|
|
820
|
|
|
/** |
|
821
|
|
|
* @param resource $x |
|
822
|
|
|
* @return mixed |
|
823
|
|
|
*/ |
|
824
|
|
|
function mapi_exportchanges_synchronize(resource $x): mixed { |
|
825
|
|
|
return null; |
|
826
|
|
|
} |
|
827
|
|
|
|
|
828
|
|
|
/** |
|
829
|
|
|
* @param resource $e |
|
830
|
|
|
* @param resource $stream |
|
831
|
|
|
* @return bool |
|
832
|
|
|
*/ |
|
833
|
|
|
function mapi_exportchanges_updatestate(resource $e, resource $stream): bool { |
|
834
|
|
|
return false; |
|
835
|
|
|
} |
|
836
|
|
|
|
|
837
|
|
|
/** |
|
838
|
|
|
* @param resource $r |
|
839
|
|
|
* @return int|bool |
|
840
|
|
|
*/ |
|
841
|
|
|
function mapi_exportchanges_getchangecount(resource $r): int|bool { |
|
842
|
|
|
return 0; |
|
843
|
|
|
} |
|
844
|
|
|
|
|
845
|
|
|
/** |
|
846
|
|
|
* @param resource $i |
|
847
|
|
|
* @param resource $stream |
|
848
|
|
|
* @param int $flags |
|
849
|
|
|
* @return bool |
|
850
|
|
|
*/ |
|
851
|
|
|
function mapi_importcontentschanges_config(resource $i, resource $stream, int $flags): bool { |
|
852
|
|
|
return false; |
|
853
|
|
|
} |
|
854
|
|
|
|
|
855
|
|
|
/** |
|
856
|
|
|
* @param resource $i |
|
857
|
|
|
* @param ?resource $stream |
|
858
|
|
|
* @return bool |
|
859
|
|
|
*/ |
|
860
|
|
|
function mapi_importcontentschanges_updatestate(resource $i, ?resource $stream = null): bool { |
|
861
|
|
|
return false; |
|
862
|
|
|
} |
|
863
|
|
|
|
|
864
|
|
|
/** |
|
865
|
|
|
* @param resource $i |
|
866
|
|
|
* @param array $props |
|
867
|
|
|
* @param int $flags |
|
868
|
|
|
* @param mixed &$msg |
|
869
|
|
|
* @return bool |
|
870
|
|
|
*/ |
|
871
|
|
|
function mapi_importcontentschanges_importmessagechange(resource $i, array $props, int $flags, mixed &$msg): bool { |
|
872
|
|
|
return false; |
|
873
|
|
|
} |
|
874
|
|
|
|
|
875
|
|
|
/** |
|
876
|
|
|
* @param resource $i |
|
877
|
|
|
* @param int $flags |
|
878
|
|
|
* @param array $msgs |
|
879
|
|
|
* @return bool |
|
880
|
|
|
*/ |
|
881
|
|
|
function mapi_importcontentschanges_importmessagedeletion(resource $i, int $flags, array $msgs): bool { |
|
882
|
|
|
return false; |
|
883
|
|
|
} |
|
884
|
|
|
|
|
885
|
|
|
/** |
|
886
|
|
|
* @param resource $i |
|
887
|
|
|
* @param array $readst |
|
888
|
|
|
* @return bool |
|
889
|
|
|
*/ |
|
890
|
|
|
function mapi_importcontentschanges_importperuserreadstatechange(resource $i, array $readst): bool { |
|
891
|
|
|
return false; |
|
892
|
|
|
} |
|
893
|
|
|
|
|
894
|
|
|
/** |
|
895
|
|
|
* @param resource $r |
|
896
|
|
|
* @param string $a |
|
897
|
|
|
* @param string $b |
|
898
|
|
|
* @param string $c |
|
899
|
|
|
* @param string $d |
|
900
|
|
|
* @param string $e |
|
901
|
|
|
* @return bool |
|
902
|
|
|
*/ |
|
903
|
|
|
function mapi_importcontentschanges_importmessagemove(resource $r, string $a, string $b, string $c, string $d, string $e): bool { |
|
904
|
|
|
return false; |
|
905
|
|
|
} |
|
906
|
|
|
|
|
907
|
|
|
/** |
|
908
|
|
|
* @param resource $i |
|
909
|
|
|
* @param resource $stream |
|
910
|
|
|
* @param int $flags |
|
911
|
|
|
* @return bool |
|
912
|
|
|
*/ |
|
913
|
|
|
function mapi_importhierarchychanges_config(resource $i, resource $stream, int $flags): bool { |
|
914
|
|
|
return false; |
|
915
|
|
|
} |
|
916
|
|
|
|
|
917
|
|
|
/** |
|
918
|
|
|
* @param resource $i |
|
919
|
|
|
* @param ?resource $stream |
|
920
|
|
|
* @return bool |
|
921
|
|
|
*/ |
|
922
|
|
|
function mapi_importhierarchychanges_updatestate(resource $i, ?resource $stream): bool { |
|
923
|
|
|
return false; |
|
924
|
|
|
} |
|
925
|
|
|
|
|
926
|
|
|
/** |
|
927
|
|
|
* @param resource $i |
|
928
|
|
|
* @param array $props |
|
929
|
|
|
* @return bool |
|
930
|
|
|
*/ |
|
931
|
|
|
function mapi_importhierarchychanges_importfolderchange(resource $i, array $props): bool { |
|
932
|
|
|
return false; |
|
933
|
|
|
} |
|
934
|
|
|
|
|
935
|
|
|
/** |
|
936
|
|
|
* @param resource $i |
|
937
|
|
|
* @param int $flags |
|
938
|
|
|
* @param array $folders |
|
939
|
|
|
* @return bool |
|
940
|
|
|
*/ |
|
941
|
|
|
function mapi_importhierarchychanges_importfolderdeletion(resource $i, int $flags, array $folders): bool { |
|
942
|
|
|
return false; |
|
943
|
|
|
} |
|
944
|
|
|
|
|
945
|
|
|
/** |
|
946
|
|
|
* @param object &$object |
|
947
|
|
|
* @return resource|bool |
|
948
|
|
|
*/ |
|
949
|
|
|
function mapi_wrap_importcontentschanges(object &$object): resource|bool { |
|
950
|
|
|
return new resource(); |
|
951
|
|
|
} |
|
952
|
|
|
|
|
953
|
|
|
/** |
|
954
|
|
|
* @param object &$object |
|
955
|
|
|
* @return resource|bool |
|
956
|
|
|
*/ |
|
957
|
|
|
function mapi_wrap_importhierarchychanges(object &$object): resource|bool { |
|
958
|
|
|
return new resource(); |
|
959
|
|
|
} |
|
960
|
|
|
|
|
961
|
|
|
/** |
|
962
|
|
|
* @param resource $ses |
|
963
|
|
|
* @param resource $abk |
|
964
|
|
|
* @param resource $msg |
|
965
|
|
|
* @param array $opts |
|
966
|
|
|
* @return resource|bool |
|
967
|
|
|
*/ |
|
968
|
|
|
function mapi_inetmapi_imtoinet(resource $ses, resource $abk, resource $msg, array $opts): resource|bool { |
|
969
|
|
|
return new resource(); |
|
970
|
|
|
} |
|
971
|
|
|
|
|
972
|
|
|
/** |
|
973
|
|
|
* @param resource $ses |
|
974
|
|
|
* @param resource $store |
|
975
|
|
|
* @param resource $abk |
|
976
|
|
|
* @param resource $msg |
|
977
|
|
|
* @param string $str |
|
978
|
|
|
* @param array $opts |
|
979
|
|
|
* @return bool |
|
980
|
|
|
*/ |
|
981
|
|
|
function mapi_inetmapi_imtomapi(resource $ses, resource $store, resource $abk, resource $msg, string $str, array $opts): bool { |
|
982
|
|
|
return false; |
|
983
|
|
|
} |
|
984
|
|
|
|
|
985
|
|
|
/** |
|
986
|
|
|
* @param resource $ses |
|
987
|
|
|
* @param resource $store |
|
988
|
|
|
* @param resource $abk |
|
989
|
|
|
* @param resource $msg |
|
990
|
|
|
* @param string $str |
|
991
|
|
|
* @param bool $norecip |
|
992
|
|
|
* @return bool |
|
993
|
|
|
*/ |
|
994
|
|
|
function mapi_icaltomapi(resource $ses, resource $store, resource $abk, resource $msg, string $str, bool $norecip): bool { |
|
995
|
|
|
return false; |
|
996
|
|
|
} |
|
997
|
|
|
|
|
998
|
|
|
/** |
|
999
|
|
|
* @param resource $abk |
|
1000
|
|
|
* @param resource $fld |
|
1001
|
|
|
* @param string $ics |
|
1002
|
|
|
* @return array|bool |
|
1003
|
|
|
*/ |
|
1004
|
|
|
function mapi_icaltomapi2(resource $abk, resource $fld, string $ics): array|bool { |
|
1005
|
|
|
return []; |
|
1006
|
|
|
} |
|
1007
|
|
|
|
|
1008
|
|
|
/** |
|
1009
|
|
|
* @param resource $ses |
|
1010
|
|
|
* @param resource $abk |
|
1011
|
|
|
* @param resource $msg |
|
1012
|
|
|
* @param array $opts |
|
1013
|
|
|
* @return string|bool |
|
1014
|
|
|
*/ |
|
1015
|
|
|
function mapi_mapitoical(resource $ses, resource $abk, resource $msg, array $opts): string|bool { |
|
1016
|
|
|
return ''; |
|
1017
|
|
|
} |
|
1018
|
|
|
|
|
1019
|
|
|
/** |
|
1020
|
|
|
* @param resource $ses |
|
1021
|
|
|
* @param resource $store |
|
1022
|
|
|
* @param resource $msg |
|
1023
|
|
|
* @param string $str |
|
1024
|
|
|
* @return bool |
|
1025
|
|
|
*/ |
|
1026
|
|
|
function mapi_vcftomapi(resource $ses, resource $store, resource $msg, string $str): bool { |
|
1027
|
|
|
return false; |
|
1028
|
|
|
} |
|
1029
|
|
|
|
|
1030
|
|
|
/** |
|
1031
|
|
|
* @param resource $fld |
|
1032
|
|
|
* @param string $vcard |
|
1033
|
|
|
* @return array|bool |
|
1034
|
|
|
*/ |
|
1035
|
|
|
function mapi_vcftomapi2(resource $fld, string $vcard): array|bool { |
|
1036
|
|
|
return []; |
|
1037
|
|
|
} |
|
1038
|
|
|
|
|
1039
|
|
|
/** |
|
1040
|
|
|
* @param resource $ses |
|
1041
|
|
|
* @param resource $abk |
|
1042
|
|
|
* @param resource $msg |
|
1043
|
|
|
* @param array $opts |
|
1044
|
|
|
* @return string|bool |
|
1045
|
|
|
*/ |
|
1046
|
|
|
function mapi_mapitovcf(resource $ses, resource $abk, resource $msg, array $opts): string|bool { |
|
1047
|
|
|
return ''; |
|
1048
|
|
|
} |
|
1049
|
|
|
|
|
1050
|
|
|
/** |
|
1051
|
|
|
* @param string $cls |
|
1052
|
|
|
* @return bool |
|
1053
|
|
|
*/ |
|
1054
|
|
|
function mapi_enable_exceptions(string $cls): bool { |
|
1055
|
|
|
return false; |
|
1056
|
|
|
} |
|
1057
|
|
|
|
|
1058
|
|
|
/** |
|
1059
|
|
|
* @param string $ft |
|
1060
|
|
|
* @return bool |
|
1061
|
|
|
*/ |
|
1062
|
|
|
function mapi_feature(string $ft): bool { |
|
1063
|
|
|
return false; |
|
1064
|
|
|
} |
|
1065
|
|
|
|
|
1066
|
|
|
/** |
|
1067
|
|
|
* @param resource $ses |
|
1068
|
|
|
* @param string &$data |
|
1069
|
|
|
* @return int |
|
1070
|
|
|
*/ |
|
1071
|
|
|
function kc_session_save(resource $ses, string &$data): int { |
|
1072
|
|
|
return 0; |
|
1073
|
|
|
} |
|
1074
|
|
|
|
|
1075
|
|
|
/** |
|
1076
|
|
|
* @param mixed $data |
|
1077
|
|
|
* @param mixed &$res |
|
1078
|
|
|
* @return int |
|
1079
|
|
|
*/ |
|
1080
|
|
|
function kc_session_restore(mixed $data, mixed &$res): int { |
|
1081
|
|
|
return 0; |
|
1082
|
|
|
} |
|
1083
|
|
|
|
|
1084
|
|
|
/** |
|
1085
|
|
|
* @param string $username |
|
1086
|
|
|
* @return array|bool |
|
1087
|
|
|
*/ |
|
1088
|
|
|
function nsp_getuserinfo(string $username): array|bool { |
|
1089
|
|
|
return []; |
|
1090
|
|
|
} |
|
1091
|
|
|
|
|
1092
|
|
|
/** |
|
1093
|
|
|
* @param string $username |
|
1094
|
|
|
* @param string $oldpass |
|
1095
|
|
|
* @param string $newpass |
|
1096
|
|
|
* @return bool |
|
1097
|
|
|
*/ |
|
1098
|
|
|
function nsp_setuserpasswd(string $username, string $oldpass, string $newpass): bool { |
|
1099
|
|
|
return false; |
|
1100
|
|
|
} |
|
1101
|
|
|
|
|
1102
|
|
|
/** |
|
1103
|
|
|
* @param string $essdn |
|
1104
|
|
|
* @return string|bool |
|
1105
|
|
|
*/ |
|
1106
|
|
|
function nsp_essdn_to_username(string $essdn): string|bool { |
|
1107
|
|
|
return ''; |
|
1108
|
|
|
} |
|
1109
|
|
|
|
|
1110
|
|
|
/** |
|
1111
|
|
|
* @param resource $ses |
|
1112
|
|
|
* @param ?string $srcheid |
|
1113
|
|
|
* @param ?string $msgeid |
|
1114
|
|
|
* @return mixed |
|
1115
|
|
|
*/ |
|
1116
|
|
|
function mapi_linkmessage(resource $ses, ?string $srcheid = null, ?string $msgeid = null): mixed { |
|
1117
|
|
|
return null; |
|
1118
|
|
|
} |
|
1119
|
|
|
|
|
1120
|
|
|
/** |
|
1121
|
|
|
* @param string $tz |
|
1122
|
|
|
* @return string|bool |
|
1123
|
|
|
*/ |
|
1124
|
|
|
function mapi_ianatz_to_tzdef(string $tz): string|bool { |
|
1125
|
|
|
return ''; |
|
1126
|
|
|
} |
|
1127
|
|
|
|
|
1128
|
|
|
/** |
|
1129
|
|
|
* @param int $code |
|
1130
|
|
|
* @return string |
|
1131
|
|
|
*/ |
|
1132
|
|
|
function mapi_strerror(int $code): string { |
|
1133
|
|
|
return ''; |
|
1134
|
|
|
} |
|
1135
|
|
|
|
|
1136
|
|
|
if (!defined('MAPIDEFS_LOADED')) { |
|
1137
|
|
|
define('MAPIDEFS_LOADED', 0x00000001); |
|
1138
|
|
|
} |
|
1139
|
|
|
if (!defined('PR_NULL')) { |
|
1140
|
|
|
define('PR_NULL', 0x00000000); |
|
1141
|
|
|
} |
|
1142
|
|
|
if (!defined('PR_EMS_TEMPLATE_BLOB')) { |
|
1143
|
|
|
define('PR_EMS_TEMPLATE_BLOB', 0x00010102); |
|
1144
|
|
|
} |
|
1145
|
|
|
if (!defined('PR_ACKNOWLEDGEMENT_MODE')) { |
|
1146
|
|
|
define('PR_ACKNOWLEDGEMENT_MODE', 0x00010003); |
|
1147
|
|
|
} |
|
1148
|
|
|
if (!defined('PR_ALTERNATE_RECIPIENT_ALLOWED')) { |
|
1149
|
|
|
define('PR_ALTERNATE_RECIPIENT_ALLOWED', 0x00020102); |
|
1150
|
|
|
} |
|
1151
|
|
|
if (!defined('PR_AUTHORIZING_USERS')) { |
|
1152
|
|
|
define('PR_AUTHORIZING_USERS', 0x00030102); |
|
1153
|
|
|
} |
|
1154
|
|
|
if (!defined('PR_AUTO_FORWARD_COMMENT')) { |
|
1155
|
|
|
define('PR_AUTO_FORWARD_COMMENT', 0x0004001E); |
|
1156
|
|
|
} |
|
1157
|
|
|
if (!defined('PR_EMS_SCRIPT_BLOB')) { |
|
1158
|
|
|
define('PR_EMS_SCRIPT_BLOB', 0x00040102); |
|
1159
|
|
|
} |
|
1160
|
|
|
if (!defined('PR_AUTO_FORWARDED')) { |
|
1161
|
|
|
define('PR_AUTO_FORWARDED', 0x0005000B); |
|
1162
|
|
|
} |
|
1163
|
|
|
if (!defined('PR_CONTENT_CONFIDENTIALITY_ALGORITHM_ID')) { |
|
1164
|
|
|
define('PR_CONTENT_CONFIDENTIALITY_ALGORITHM_ID', 0x00060102); |
|
1165
|
|
|
} |
|
1166
|
|
|
if (!defined('PR_CONTENT_CORRELATOR')) { |
|
1167
|
|
|
define('PR_CONTENT_CORRELATOR', 0x00070102); |
|
1168
|
|
|
} |
|
1169
|
|
|
if (!defined('PR_CONTENT_IDENTIFIER')) { |
|
1170
|
|
|
define('PR_CONTENT_IDENTIFIER', 0x0008001E); |
|
1171
|
|
|
} |
|
1172
|
|
|
if (!defined('PR_CONTENT_LENGTH')) { |
|
1173
|
|
|
define('PR_CONTENT_LENGTH', 0x00090003); |
|
1174
|
|
|
} |
|
1175
|
|
|
if (!defined('PR_CONTENT_RETURN_REQUESTED')) { |
|
1176
|
|
|
define('PR_CONTENT_RETURN_REQUESTED', 0x000A000B); |
|
1177
|
|
|
} |
|
1178
|
|
|
if (!defined('PR_CONVERSATION_KEY')) { |
|
1179
|
|
|
define('PR_CONVERSATION_KEY', 0x000B0102); |
|
1180
|
|
|
} |
|
1181
|
|
|
if (!defined('PR_CONVERSION_EITS')) { |
|
1182
|
|
|
define('PR_CONVERSION_EITS', 0x000C0102); |
|
1183
|
|
|
} |
|
1184
|
|
|
if (!defined('PR_CONVERSION_WITH_LOSS_PROHIBITED')) { |
|
1185
|
|
|
define('PR_CONVERSION_WITH_LOSS_PROHIBITED', 0x000D000B); |
|
1186
|
|
|
} |
|
1187
|
|
|
if (!defined('PR_CONVERTED_EITS')) { |
|
1188
|
|
|
define('PR_CONVERTED_EITS', 0x000E0102); |
|
1189
|
|
|
} |
|
1190
|
|
|
if (!defined('PR_DEFERRED_DELIVERY_TIME')) { |
|
1191
|
|
|
define('PR_DEFERRED_DELIVERY_TIME', 0x000F0040); |
|
1192
|
|
|
} |
|
1193
|
|
|
if (!defined('PR_DELIVER_TIME')) { |
|
1194
|
|
|
define('PR_DELIVER_TIME', 0x00100040); |
|
1195
|
|
|
} |
|
1196
|
|
|
if (!defined('PR_DISCARD_REASON')) { |
|
1197
|
|
|
define('PR_DISCARD_REASON', 0x00110003); |
|
1198
|
|
|
} |
|
1199
|
|
|
if (!defined('PR_DISCLOSURE_OF_RECIPIENTS')) { |
|
1200
|
|
|
define('PR_DISCLOSURE_OF_RECIPIENTS', 0x0012000B); |
|
1201
|
|
|
} |
|
1202
|
|
|
if (!defined('PR_DL_EXPANSION_HISTORY')) { |
|
1203
|
|
|
define('PR_DL_EXPANSION_HISTORY', 0x00130102); |
|
1204
|
|
|
} |
|
1205
|
|
|
if (!defined('PR_DL_EXPANSION_PROHIBITED')) { |
|
1206
|
|
|
define('PR_DL_EXPANSION_PROHIBITED', 0x0014000B); |
|
1207
|
|
|
} |
|
1208
|
|
|
if (!defined('PR_EXPIRY_TIME')) { |
|
1209
|
|
|
define('PR_EXPIRY_TIME', 0x00150040); |
|
1210
|
|
|
} |
|
1211
|
|
|
if (!defined('PR_IMPLICIT_CONVERSION_PROHIBITED')) { |
|
1212
|
|
|
define('PR_IMPLICIT_CONVERSION_PROHIBITED', 0x0016000B); |
|
1213
|
|
|
} |
|
1214
|
|
|
if (!defined('PR_IMPORTANCE')) { |
|
1215
|
|
|
define('PR_IMPORTANCE', 0x00170003); |
|
1216
|
|
|
} |
|
1217
|
|
|
if (!defined('PR_IPM_ID')) { |
|
1218
|
|
|
define('PR_IPM_ID', 0x00180102); |
|
1219
|
|
|
} |
|
1220
|
|
|
if (!defined('PR_LATEST_DELIVERY_TIME')) { |
|
1221
|
|
|
define('PR_LATEST_DELIVERY_TIME', 0x00190040); |
|
1222
|
|
|
} |
|
1223
|
|
|
if (!defined('PR_MESSAGE_CLASS')) { |
|
1224
|
|
|
define('PR_MESSAGE_CLASS', 0x001A001E); |
|
1225
|
|
|
} |
|
1226
|
|
|
if (!defined('PR_MESSAGE_CLASS_A')) { |
|
1227
|
|
|
define('PR_MESSAGE_CLASS_A', 0x001A001E); |
|
1228
|
|
|
} |
|
1229
|
|
|
if (!defined('PR_MESSAGE_DELIVERY_ID')) { |
|
1230
|
|
|
define('PR_MESSAGE_DELIVERY_ID', 0x001B0102); |
|
1231
|
|
|
} |
|
1232
|
|
|
if (!defined('PR_MESSAGE_SECURITY_LABEL')) { |
|
1233
|
|
|
define('PR_MESSAGE_SECURITY_LABEL', 0x001E0102); |
|
1234
|
|
|
} |
|
1235
|
|
|
if (!defined('PR_OBSOLETED_IPMS')) { |
|
1236
|
|
|
define('PR_OBSOLETED_IPMS', 0x001F0102); |
|
1237
|
|
|
} |
|
1238
|
|
|
if (!defined('PR_ORIGINALLY_INTENDED_RECIPIENT_NAME')) { |
|
1239
|
|
|
define('PR_ORIGINALLY_INTENDED_RECIPIENT_NAME', 0x00200102); |
|
1240
|
|
|
} |
|
1241
|
|
|
if (!defined('PR_ORIGINAL_EITS')) { |
|
1242
|
|
|
define('PR_ORIGINAL_EITS', 0x00210102); |
|
1243
|
|
|
} |
|
1244
|
|
|
if (!defined('PR_ORIGINATOR_CERTIFICATE')) { |
|
1245
|
|
|
define('PR_ORIGINATOR_CERTIFICATE', 0x00220102); |
|
1246
|
|
|
} |
|
1247
|
|
|
if (!defined('PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED')) { |
|
1248
|
|
|
define('PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED', 0x0023000B); |
|
1249
|
|
|
} |
|
1250
|
|
|
if (!defined('PR_ORIGINATOR_RETURN_ADDRESS')) { |
|
1251
|
|
|
define('PR_ORIGINATOR_RETURN_ADDRESS', 0x00240102); |
|
1252
|
|
|
} |
|
1253
|
|
|
if (!defined('PR_PARENT_KEY')) { |
|
1254
|
|
|
define('PR_PARENT_KEY', 0x00250102); |
|
1255
|
|
|
} |
|
1256
|
|
|
if (!defined('PR_PRIORITY')) { |
|
1257
|
|
|
define('PR_PRIORITY', 0x00260003); |
|
1258
|
|
|
} |
|
1259
|
|
|
if (!defined('PR_ORIGIN_CHECK')) { |
|
1260
|
|
|
define('PR_ORIGIN_CHECK', 0x00270102); |
|
1261
|
|
|
} |
|
1262
|
|
|
if (!defined('PR_PROOF_OF_SUBMISSION_REQUESTED')) { |
|
1263
|
|
|
define('PR_PROOF_OF_SUBMISSION_REQUESTED', 0x0028000B); |
|
1264
|
|
|
} |
|
1265
|
|
|
if (!defined('PR_READ_RECEIPT_REQUESTED')) { |
|
1266
|
|
|
define('PR_READ_RECEIPT_REQUESTED', 0x0029000B); |
|
1267
|
|
|
} |
|
1268
|
|
|
if (!defined('PR_RECEIPT_TIME')) { |
|
1269
|
|
|
define('PR_RECEIPT_TIME', 0x002A0040); |
|
1270
|
|
|
} |
|
1271
|
|
|
if (!defined('PR_RECIPIENT_REASSIGNMENT_PROHIBITED')) { |
|
1272
|
|
|
define('PR_RECIPIENT_REASSIGNMENT_PROHIBITED', 0x002B000B); |
|
1273
|
|
|
} |
|
1274
|
|
|
if (!defined('PR_REDIRECTION_HISTORY')) { |
|
1275
|
|
|
define('PR_REDIRECTION_HISTORY', 0x002C0102); |
|
1276
|
|
|
} |
|
1277
|
|
|
if (!defined('PR_RELATED_IPMS')) { |
|
1278
|
|
|
define('PR_RELATED_IPMS', 0x002D0102); |
|
1279
|
|
|
} |
|
1280
|
|
|
if (!defined('PR_ORIGINAL_SENSITIVITY')) { |
|
1281
|
|
|
define('PR_ORIGINAL_SENSITIVITY', 0x002E0003); |
|
1282
|
|
|
} |
|
1283
|
|
|
if (!defined('PR_LANGUAGES')) { |
|
1284
|
|
|
define('PR_LANGUAGES', 0x002F001E); |
|
1285
|
|
|
} |
|
1286
|
|
|
if (!defined('PR_REPLY_TIME')) { |
|
1287
|
|
|
define('PR_REPLY_TIME', 0x00300040); |
|
1288
|
|
|
} |
|
1289
|
|
|
if (!defined('PR_REPORT_TAG')) { |
|
1290
|
|
|
define('PR_REPORT_TAG', 0x00310102); |
|
1291
|
|
|
} |
|
1292
|
|
|
if (!defined('PR_REPORT_TIME')) { |
|
1293
|
|
|
define('PR_REPORT_TIME', 0x00320040); |
|
1294
|
|
|
} |
|
1295
|
|
|
if (!defined('PR_RETURNED_IPM')) { |
|
1296
|
|
|
define('PR_RETURNED_IPM', 0x0033000B); |
|
1297
|
|
|
} |
|
1298
|
|
|
if (!defined('PR_SECURITY')) { |
|
1299
|
|
|
define('PR_SECURITY', 0x00340003); |
|
1300
|
|
|
} |
|
1301
|
|
|
if (!defined('PR_INCOMPLETE_COPY')) { |
|
1302
|
|
|
define('PR_INCOMPLETE_COPY', 0x0035000B); |
|
1303
|
|
|
} |
|
1304
|
|
|
if (!defined('PR_SENSITIVITY')) { |
|
1305
|
|
|
define('PR_SENSITIVITY', 0x00360003); |
|
1306
|
|
|
} |
|
1307
|
|
|
if (!defined('PR_SUBJECT')) { |
|
1308
|
|
|
define('PR_SUBJECT', 0x0037001E); |
|
1309
|
|
|
} |
|
1310
|
|
|
if (!defined('PR_SUBJECT_A')) { |
|
1311
|
|
|
define('PR_SUBJECT_A', 0x0037001E); |
|
1312
|
|
|
} |
|
1313
|
|
|
if (!defined('PR_SUBJECT_IPM')) { |
|
1314
|
|
|
define('PR_SUBJECT_IPM', 0x00380102); |
|
1315
|
|
|
} |
|
1316
|
|
|
if (!defined('PR_CLIENT_SUBMIT_TIME')) { |
|
1317
|
|
|
define('PR_CLIENT_SUBMIT_TIME', 0x00390040); |
|
1318
|
|
|
} |
|
1319
|
|
|
if (!defined('PR_REPORT_NAME')) { |
|
1320
|
|
|
define('PR_REPORT_NAME', 0x003A001E); |
|
1321
|
|
|
} |
|
1322
|
|
|
if (!defined('PR_SENT_REPRESENTING_SEARCH_KEY')) { |
|
1323
|
|
|
define('PR_SENT_REPRESENTING_SEARCH_KEY', 0x003B0102); |
|
1324
|
|
|
} |
|
1325
|
|
|
if (!defined('PR_X400_CONTENT_TYPE')) { |
|
1326
|
|
|
define('PR_X400_CONTENT_TYPE', 0x003C0102); |
|
1327
|
|
|
} |
|
1328
|
|
|
if (!defined('PR_SUBJECT_PREFIX')) { |
|
1329
|
|
|
define('PR_SUBJECT_PREFIX', 0x003D001E); |
|
1330
|
|
|
} |
|
1331
|
|
|
if (!defined('PR_SUBJECT_PREFIX_A')) { |
|
1332
|
|
|
define('PR_SUBJECT_PREFIX_A', 0x003D001E); |
|
1333
|
|
|
} |
|
1334
|
|
|
if (!defined('PR_NON_RECEIPT_REASON')) { |
|
1335
|
|
|
define('PR_NON_RECEIPT_REASON', 0x003E0003); |
|
1336
|
|
|
} |
|
1337
|
|
|
if (!defined('PR_RECEIVED_BY_ENTRYID')) { |
|
1338
|
|
|
define('PR_RECEIVED_BY_ENTRYID', 0x003F0102); |
|
1339
|
|
|
} |
|
1340
|
|
|
if (!defined('PR_RECEIVED_BY_NAME')) { |
|
1341
|
|
|
define('PR_RECEIVED_BY_NAME', 0x0040001E); |
|
1342
|
|
|
} |
|
1343
|
|
|
if (!defined('PR_SENT_REPRESENTING_ENTRYID')) { |
|
1344
|
|
|
define('PR_SENT_REPRESENTING_ENTRYID', 0x00410102); |
|
1345
|
|
|
} |
|
1346
|
|
|
if (!defined('PR_SENT_REPRESENTING_NAME')) { |
|
1347
|
|
|
define('PR_SENT_REPRESENTING_NAME', 0x0042001E); |
|
1348
|
|
|
} |
|
1349
|
|
|
if (!defined('PR_SENT_REPRESENTING_NAME_A')) { |
|
1350
|
|
|
define('PR_SENT_REPRESENTING_NAME_A', 0x0042001E); |
|
1351
|
|
|
} |
|
1352
|
|
|
if (!defined('PR_RCVD_REPRESENTING_ENTRYID')) { |
|
1353
|
|
|
define('PR_RCVD_REPRESENTING_ENTRYID', 0x00430102); |
|
1354
|
|
|
} |
|
1355
|
|
|
if (!defined('PR_RCVD_REPRESENTING_NAME')) { |
|
1356
|
|
|
define('PR_RCVD_REPRESENTING_NAME', 0x0044001E); |
|
1357
|
|
|
} |
|
1358
|
|
|
if (!defined('PR_RCVD_REPRESENTING_NAME_A')) { |
|
1359
|
|
|
define('PR_RCVD_REPRESENTING_NAME_A', 0x0044001E); |
|
1360
|
|
|
} |
|
1361
|
|
|
if (!defined('PR_REPORT_ENTRYID')) { |
|
1362
|
|
|
define('PR_REPORT_ENTRYID', 0x00450102); |
|
1363
|
|
|
} |
|
1364
|
|
|
if (!defined('PR_READ_RECEIPT_ENTRYID')) { |
|
1365
|
|
|
define('PR_READ_RECEIPT_ENTRYID', 0x00460102); |
|
1366
|
|
|
} |
|
1367
|
|
|
if (!defined('PR_MESSAGE_SUBMISSION_ID')) { |
|
1368
|
|
|
define('PR_MESSAGE_SUBMISSION_ID', 0x00470102); |
|
1369
|
|
|
} |
|
1370
|
|
|
if (!defined('PR_PROVIDER_SUBMIT_TIME')) { |
|
1371
|
|
|
define('PR_PROVIDER_SUBMIT_TIME', 0x00480040); |
|
1372
|
|
|
} |
|
1373
|
|
|
if (!defined('PR_ORIGINAL_SUBJECT')) { |
|
1374
|
|
|
define('PR_ORIGINAL_SUBJECT', 0x0049001E); |
|
1375
|
|
|
} |
|
1376
|
|
|
if (!defined('PR_DISC_VAL')) { |
|
1377
|
|
|
define('PR_DISC_VAL', 0x004A000B); |
|
1378
|
|
|
} |
|
1379
|
|
|
if (!defined('PR_ORIG_MESSAGE_CLASS')) { |
|
1380
|
|
|
define('PR_ORIG_MESSAGE_CLASS', 0x004B001E); |
|
1381
|
|
|
} |
|
1382
|
|
|
if (!defined('PR_ORIG_MESSAGE_CLASS_A')) { |
|
1383
|
|
|
define('PR_ORIG_MESSAGE_CLASS_A', 0x004B001E); |
|
1384
|
|
|
} |
|
1385
|
|
|
if (!defined('PR_ORIGINAL_AUTHOR_ENTRYID')) { |
|
1386
|
|
|
define('PR_ORIGINAL_AUTHOR_ENTRYID', 0x004C0102); |
|
1387
|
|
|
} |
|
1388
|
|
|
if (!defined('PR_ORIGINAL_AUTHOR_NAME')) { |
|
1389
|
|
|
define('PR_ORIGINAL_AUTHOR_NAME', 0x004D001E); |
|
1390
|
|
|
} |
|
1391
|
|
|
if (!defined('PR_ORIGINAL_SUBMIT_TIME')) { |
|
1392
|
|
|
define('PR_ORIGINAL_SUBMIT_TIME', 0x004E0040); |
|
1393
|
|
|
} |
|
1394
|
|
|
if (!defined('PR_REPLY_RECIPIENT_ENTRIES')) { |
|
1395
|
|
|
define('PR_REPLY_RECIPIENT_ENTRIES', 0x004F0102); |
|
1396
|
|
|
} |
|
1397
|
|
|
if (!defined('PR_REPLY_RECIPIENT_NAMES')) { |
|
1398
|
|
|
define('PR_REPLY_RECIPIENT_NAMES', 0x0050001E); |
|
1399
|
|
|
} |
|
1400
|
|
|
if (!defined('PR_RECEIVED_BY_SEARCH_KEY')) { |
|
1401
|
|
|
define('PR_RECEIVED_BY_SEARCH_KEY', 0x00510102); |
|
1402
|
|
|
} |
|
1403
|
|
|
if (!defined('PR_RCVD_REPRESENTING_SEARCH_KEY')) { |
|
1404
|
|
|
define('PR_RCVD_REPRESENTING_SEARCH_KEY', 0x00520102); |
|
1405
|
|
|
} |
|
1406
|
|
|
if (!defined('PR_READ_RECEIPT_SEARCH_KEY')) { |
|
1407
|
|
|
define('PR_READ_RECEIPT_SEARCH_KEY', 0x00530102); |
|
1408
|
|
|
} |
|
1409
|
|
|
if (!defined('PR_REPORT_SEARCH_KEY')) { |
|
1410
|
|
|
define('PR_REPORT_SEARCH_KEY', 0x00540102); |
|
1411
|
|
|
} |
|
1412
|
|
|
if (!defined('PR_ORIGINAL_DELIVERY_TIME')) { |
|
1413
|
|
|
define('PR_ORIGINAL_DELIVERY_TIME', 0x00550040); |
|
1414
|
|
|
} |
|
1415
|
|
|
if (!defined('PR_ORIGINAL_AUTHOR_SEARCH_KEY')) { |
|
1416
|
|
|
define('PR_ORIGINAL_AUTHOR_SEARCH_KEY', 0x00560102); |
|
1417
|
|
|
} |
|
1418
|
|
|
if (!defined('PR_MESSAGE_TO_ME')) { |
|
1419
|
|
|
define('PR_MESSAGE_TO_ME', 0x0057000B); |
|
1420
|
|
|
} |
|
1421
|
|
|
if (!defined('PR_MESSAGE_CC_ME')) { |
|
1422
|
|
|
define('PR_MESSAGE_CC_ME', 0x0058000B); |
|
1423
|
|
|
} |
|
1424
|
|
|
if (!defined('PR_MESSAGE_RECIP_ME')) { |
|
1425
|
|
|
define('PR_MESSAGE_RECIP_ME', 0x0059000B); |
|
1426
|
|
|
} |
|
1427
|
|
|
if (!defined('PR_ORIGINAL_SENDER_NAME')) { |
|
1428
|
|
|
define('PR_ORIGINAL_SENDER_NAME', 0x005A001E); |
|
1429
|
|
|
} |
|
1430
|
|
|
if (!defined('PR_ORIGINAL_SENDER_ENTRYID')) { |
|
1431
|
|
|
define('PR_ORIGINAL_SENDER_ENTRYID', 0x005B0102); |
|
1432
|
|
|
} |
|
1433
|
|
|
if (!defined('PR_ORIGINAL_SENDER_SEARCH_KEY')) { |
|
1434
|
|
|
define('PR_ORIGINAL_SENDER_SEARCH_KEY', 0x005C0102); |
|
1435
|
|
|
} |
|
1436
|
|
|
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_NAME')) { |
|
1437
|
|
|
define('PR_ORIGINAL_SENT_REPRESENTING_NAME', 0x005D001E); |
|
1438
|
|
|
} |
|
1439
|
|
|
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_ENTRYID')) { |
|
1440
|
|
|
define('PR_ORIGINAL_SENT_REPRESENTING_ENTRYID', 0x005E0102); |
|
1441
|
|
|
} |
|
1442
|
|
|
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_SEARCH_KEY')) { |
|
1443
|
|
|
define('PR_ORIGINAL_SENT_REPRESENTING_SEARCH_KEY', 0x005F0102); |
|
1444
|
|
|
} |
|
1445
|
|
|
if (!defined('PR_START_DATE')) { |
|
1446
|
|
|
define('PR_START_DATE', 0x00600040); |
|
1447
|
|
|
} |
|
1448
|
|
|
if (!defined('PR_END_DATE')) { |
|
1449
|
|
|
define('PR_END_DATE', 0x00610040); |
|
1450
|
|
|
} |
|
1451
|
|
|
if (!defined('PR_OWNER_APPT_ID')) { |
|
1452
|
|
|
define('PR_OWNER_APPT_ID', 0x00620003); |
|
1453
|
|
|
} |
|
1454
|
|
|
if (!defined('PR_RESPONSE_REQUESTED')) { |
|
1455
|
|
|
define('PR_RESPONSE_REQUESTED', 0x0063000B); |
|
1456
|
|
|
} |
|
1457
|
|
|
if (!defined('PR_SENT_REPRESENTING_ADDRTYPE')) { |
|
1458
|
|
|
define('PR_SENT_REPRESENTING_ADDRTYPE', 0x0064001E); |
|
1459
|
|
|
} |
|
1460
|
|
|
if (!defined('PR_SENT_REPRESENTING_ADDRTYPE_A')) { |
|
1461
|
|
|
define('PR_SENT_REPRESENTING_ADDRTYPE_A', 0x0064001E); |
|
1462
|
|
|
} |
|
1463
|
|
|
if (!defined('PR_SENT_REPRESENTING_EMAIL_ADDRESS')) { |
|
1464
|
|
|
define('PR_SENT_REPRESENTING_EMAIL_ADDRESS', 0x0065001E); |
|
1465
|
|
|
} |
|
1466
|
|
|
if (!defined('PR_SENT_REPRESENTING_EMAIL_ADDRESS_A')) { |
|
1467
|
|
|
define('PR_SENT_REPRESENTING_EMAIL_ADDRESS_A', 0x0065001E); |
|
1468
|
|
|
} |
|
1469
|
|
|
if (!defined('PR_ORIGINAL_SENDER_ADDRTYPE')) { |
|
1470
|
|
|
define('PR_ORIGINAL_SENDER_ADDRTYPE', 0x0066001E); |
|
1471
|
|
|
} |
|
1472
|
|
|
if (!defined('PR_ORIGINAL_SENDER_EMAIL_ADDRESS')) { |
|
1473
|
|
|
define('PR_ORIGINAL_SENDER_EMAIL_ADDRESS', 0x0067001E); |
|
1474
|
|
|
} |
|
1475
|
|
|
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_ADDRTYPE')) { |
|
1476
|
|
|
define('PR_ORIGINAL_SENT_REPRESENTING_ADDRTYPE', 0x0068001E); |
|
1477
|
|
|
} |
|
1478
|
|
|
if (!defined('PR_ORIGINAL_SENT_REPRESENTING_EMAIL_ADDRESS')) { |
|
1479
|
|
|
define('PR_ORIGINAL_SENT_REPRESENTING_EMAIL_ADDRESS', 0x0069001E); |
|
1480
|
|
|
} |
|
1481
|
|
|
if (!defined('PR_CONVERSATION_TOPIC')) { |
|
1482
|
|
|
define('PR_CONVERSATION_TOPIC', 0x0070001E); |
|
1483
|
|
|
} |
|
1484
|
|
|
if (!defined('PR_CONVERSATION_TOPIC_A')) { |
|
1485
|
|
|
define('PR_CONVERSATION_TOPIC_A', 0x0070001E); |
|
1486
|
|
|
} |
|
1487
|
|
|
if (!defined('PR_CONVERSATION_INDEX')) { |
|
1488
|
|
|
define('PR_CONVERSATION_INDEX', 0x00710102); |
|
1489
|
|
|
} |
|
1490
|
|
|
if (!defined('PR_ORIGINAL_DISPLAY_BCC')) { |
|
1491
|
|
|
define('PR_ORIGINAL_DISPLAY_BCC', 0x0072001E); |
|
1492
|
|
|
} |
|
1493
|
|
|
if (!defined('PR_ORIGINAL_DISPLAY_CC')) { |
|
1494
|
|
|
define('PR_ORIGINAL_DISPLAY_CC', 0x0073001E); |
|
1495
|
|
|
} |
|
1496
|
|
|
if (!defined('PR_ORIGINAL_DISPLAY_TO')) { |
|
1497
|
|
|
define('PR_ORIGINAL_DISPLAY_TO', 0x0074001E); |
|
1498
|
|
|
} |
|
1499
|
|
|
if (!defined('PR_RECEIVED_BY_ADDRTYPE')) { |
|
1500
|
|
|
define('PR_RECEIVED_BY_ADDRTYPE', 0x0075001E); |
|
1501
|
|
|
} |
|
1502
|
|
|
if (!defined('PR_RECEIVED_BY_EMAIL_ADDRESS')) { |
|
1503
|
|
|
define('PR_RECEIVED_BY_EMAIL_ADDRESS', 0x0076001E); |
|
1504
|
|
|
} |
|
1505
|
|
|
if (!defined('PR_RCVD_REPRESENTING_ADDRTYPE')) { |
|
1506
|
|
|
define('PR_RCVD_REPRESENTING_ADDRTYPE', 0x0077001E); |
|
1507
|
|
|
} |
|
1508
|
|
|
if (!defined('PR_RCVD_REPRESENTING_ADDRTYPE_A')) { |
|
1509
|
|
|
define('PR_RCVD_REPRESENTING_ADDRTYPE_A', 0x0077001E); |
|
1510
|
|
|
} |
|
1511
|
|
|
if (!defined('PR_RCVD_REPRESENTING_EMAIL_ADDRESS')) { |
|
1512
|
|
|
define('PR_RCVD_REPRESENTING_EMAIL_ADDRESS', 0x0078001E); |
|
1513
|
|
|
} |
|
1514
|
|
|
if (!defined('PR_RCVD_REPRESENTING_EMAIL_ADDRESS_A')) { |
|
1515
|
|
|
define('PR_RCVD_REPRESENTING_EMAIL_ADDRESS_A', 0x0078001E); |
|
1516
|
|
|
} |
|
1517
|
|
|
if (!defined('PR_ORIGINAL_AUTHOR_ADDRTYPE')) { |
|
1518
|
|
|
define('PR_ORIGINAL_AUTHOR_ADDRTYPE', 0x0079001E); |
|
1519
|
|
|
} |
|
1520
|
|
|
if (!defined('PR_ORIGINAL_AUTHOR_EMAIL_ADDRESS')) { |
|
1521
|
|
|
define('PR_ORIGINAL_AUTHOR_EMAIL_ADDRESS', 0x007A001E); |
|
1522
|
|
|
} |
|
1523
|
|
|
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_ADDRTYPE')) { |
|
1524
|
|
|
define('PR_ORIGINALLY_INTENDED_RECIP_ADDRTYPE', 0x007B001E); |
|
1525
|
|
|
} |
|
1526
|
|
|
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_EMAIL_ADDRESS')) { |
|
1527
|
|
|
define('PR_ORIGINALLY_INTENDED_RECIP_EMAIL_ADDRESS', 0x007C001E); |
|
1528
|
|
|
} |
|
1529
|
|
|
if (!defined('PR_TRANSPORT_MESSAGE_HEADERS')) { |
|
1530
|
|
|
define('PR_TRANSPORT_MESSAGE_HEADERS', 0x007D001E); |
|
1531
|
|
|
} |
|
1532
|
|
|
if (!defined('PR_TRANSPORT_MESSAGE_HEADERS_A')) { |
|
1533
|
|
|
define('PR_TRANSPORT_MESSAGE_HEADERS_A', 0x007D001E); |
|
1534
|
|
|
} |
|
1535
|
|
|
if (!defined('PR_DELEGATION')) { |
|
1536
|
|
|
define('PR_DELEGATION', 0x007E0102); |
|
1537
|
|
|
} |
|
1538
|
|
|
if (!defined('PR_TNEF_CORRELATION_KEY')) { |
|
1539
|
|
|
define('PR_TNEF_CORRELATION_KEY', 0x007F0102); |
|
1540
|
|
|
} |
|
1541
|
|
|
if (!defined('PR_REPORT_DISPOSITION')) { |
|
1542
|
|
|
define('PR_REPORT_DISPOSITION', 0x0080001E); |
|
1543
|
|
|
} |
|
1544
|
|
|
if (!defined('PR_REPORT_DISPOSITION_MODE')) { |
|
1545
|
|
|
define('PR_REPORT_DISPOSITION_MODE', 0x0081001E); |
|
1546
|
|
|
} |
|
1547
|
|
|
if (!defined('PR_EMS_AB_ROOM_CAPACITY')) { |
|
1548
|
|
|
define('PR_EMS_AB_ROOM_CAPACITY', 0x08070003); |
|
1549
|
|
|
} |
|
1550
|
|
|
if (!defined('PR_EMS_AB_ROOM_DESCRIPTION')) { |
|
1551
|
|
|
define('PR_EMS_AB_ROOM_DESCRIPTION', 0x0809001E); |
|
1552
|
|
|
} |
|
1553
|
|
|
if (!defined('PR_CONTENT_INTEGRITY_CHECK')) { |
|
1554
|
|
|
define('PR_CONTENT_INTEGRITY_CHECK', 0x0C000102); |
|
1555
|
|
|
} |
|
1556
|
|
|
if (!defined('PR_EXPLICIT_CONVERSION')) { |
|
1557
|
|
|
define('PR_EXPLICIT_CONVERSION', 0x0C010003); |
|
1558
|
|
|
} |
|
1559
|
|
|
if (!defined('PR_IPM_RETURN_REQUESTED')) { |
|
1560
|
|
|
define('PR_IPM_RETURN_REQUESTED', 0x0C02000B); |
|
1561
|
|
|
} |
|
1562
|
|
|
if (!defined('PR_MESSAGE_TOKEN')) { |
|
1563
|
|
|
define('PR_MESSAGE_TOKEN', 0x0C030102); |
|
1564
|
|
|
} |
|
1565
|
|
|
if (!defined('PR_NDR_REASON_CODE')) { |
|
1566
|
|
|
define('PR_NDR_REASON_CODE', 0x0C040003); |
|
1567
|
|
|
} |
|
1568
|
|
|
if (!defined('PR_NDR_DIAG_CODE')) { |
|
1569
|
|
|
define('PR_NDR_DIAG_CODE', 0x0C050003); |
|
1570
|
|
|
} |
|
1571
|
|
|
if (!defined('PR_NON_RECEIPT_NOTIFICATION_REQUESTED')) { |
|
1572
|
|
|
define('PR_NON_RECEIPT_NOTIFICATION_REQUESTED', 0x0C06000B); |
|
1573
|
|
|
} |
|
1574
|
|
|
if (!defined('PR_DELIVERY_POINT')) { |
|
1575
|
|
|
define('PR_DELIVERY_POINT', 0x0C070003); |
|
1576
|
|
|
} |
|
1577
|
|
|
if (!defined('PR_ORIGINATOR_NON_DELIVERY_REPORT_REQUESTED')) { |
|
1578
|
|
|
define('PR_ORIGINATOR_NON_DELIVERY_REPORT_REQUESTED', 0x0C08000B); |
|
1579
|
|
|
} |
|
1580
|
|
|
if (!defined('PR_ORIGINATOR_REQUESTED_ALTERNATE_RECIPIENT')) { |
|
1581
|
|
|
define('PR_ORIGINATOR_REQUESTED_ALTERNATE_RECIPIENT', 0x0C090102); |
|
1582
|
|
|
} |
|
1583
|
|
|
if (!defined('PR_PHYSICAL_DELIVERY_BUREAU_FAX_DELIVERY')) { |
|
1584
|
|
|
define('PR_PHYSICAL_DELIVERY_BUREAU_FAX_DELIVERY', 0x0C0A000B); |
|
1585
|
|
|
} |
|
1586
|
|
|
if (!defined('PR_PHYSICAL_DELIVERY_MODE')) { |
|
1587
|
|
|
define('PR_PHYSICAL_DELIVERY_MODE', 0x0C0B0003); |
|
1588
|
|
|
} |
|
1589
|
|
|
if (!defined('PR_PHYSICAL_DELIVERY_REPORT_REQUEST')) { |
|
1590
|
|
|
define('PR_PHYSICAL_DELIVERY_REPORT_REQUEST', 0x0C0C0003); |
|
1591
|
|
|
} |
|
1592
|
|
|
if (!defined('PR_PHYSICAL_FORWARDING_ADDRESS')) { |
|
1593
|
|
|
define('PR_PHYSICAL_FORWARDING_ADDRESS', 0x0C0D0102); |
|
1594
|
|
|
} |
|
1595
|
|
|
if (!defined('PR_PHYSICAL_FORWARDING_ADDRESS_REQUESTED')) { |
|
1596
|
|
|
define('PR_PHYSICAL_FORWARDING_ADDRESS_REQUESTED', 0x0C0E000B); |
|
1597
|
|
|
} |
|
1598
|
|
|
if (!defined('PR_PHYSICAL_FORWARDING_PROHIBITED')) { |
|
1599
|
|
|
define('PR_PHYSICAL_FORWARDING_PROHIBITED', 0x0C0F000B); |
|
1600
|
|
|
} |
|
1601
|
|
|
if (!defined('PR_PHYSICAL_RENDITION_ATTRIBUTES')) { |
|
1602
|
|
|
define('PR_PHYSICAL_RENDITION_ATTRIBUTES', 0x0C100102); |
|
1603
|
|
|
} |
|
1604
|
|
|
if (!defined('PR_PROOF_OF_DELIVERY')) { |
|
1605
|
|
|
define('PR_PROOF_OF_DELIVERY', 0x0C110102); |
|
1606
|
|
|
} |
|
1607
|
|
|
if (!defined('PR_PROOF_OF_DELIVERY_REQUESTED')) { |
|
1608
|
|
|
define('PR_PROOF_OF_DELIVERY_REQUESTED', 0x0C12000B); |
|
1609
|
|
|
} |
|
1610
|
|
|
if (!defined('PR_RECIPIENT_CERTIFICATE')) { |
|
1611
|
|
|
define('PR_RECIPIENT_CERTIFICATE', 0x0C130102); |
|
1612
|
|
|
} |
|
1613
|
|
|
if (!defined('PR_RECIPIENT_NUMBER_FOR_ADVICE')) { |
|
1614
|
|
|
define('PR_RECIPIENT_NUMBER_FOR_ADVICE', 0x0C14001E); |
|
1615
|
|
|
} |
|
1616
|
|
|
if (!defined('PR_RECIPIENT_TYPE')) { |
|
1617
|
|
|
define('PR_RECIPIENT_TYPE', 0x0C150003); |
|
1618
|
|
|
} |
|
1619
|
|
|
if (!defined('PR_REGISTERED_MAIL_TYPE')) { |
|
1620
|
|
|
define('PR_REGISTERED_MAIL_TYPE', 0x0C160003); |
|
1621
|
|
|
} |
|
1622
|
|
|
if (!defined('PR_REPLY_REQUESTED')) { |
|
1623
|
|
|
define('PR_REPLY_REQUESTED', 0x0C17000B); |
|
1624
|
|
|
} |
|
1625
|
|
|
if (!defined('PR_REQUESTED_DELIVERY_METHOD')) { |
|
1626
|
|
|
define('PR_REQUESTED_DELIVERY_METHOD', 0x0C180003); |
|
1627
|
|
|
} |
|
1628
|
|
|
if (!defined('PR_SENDER_ENTRYID')) { |
|
1629
|
|
|
define('PR_SENDER_ENTRYID', 0x0C190102); |
|
1630
|
|
|
} |
|
1631
|
|
|
if (!defined('PR_SENDER_NAME')) { |
|
1632
|
|
|
define('PR_SENDER_NAME', 0x0C1A001E); |
|
1633
|
|
|
} |
|
1634
|
|
|
if (!defined('PR_SENDER_NAME_A')) { |
|
1635
|
|
|
define('PR_SENDER_NAME_A', 0x0C1A001E); |
|
1636
|
|
|
} |
|
1637
|
|
|
if (!defined('PR_SUPPLEMENTARY_INFO')) { |
|
1638
|
|
|
define('PR_SUPPLEMENTARY_INFO', 0x0C1B001E); |
|
1639
|
|
|
} |
|
1640
|
|
|
if (!defined('PR_TYPE_OF_MTS_USER')) { |
|
1641
|
|
|
define('PR_TYPE_OF_MTS_USER', 0x0C1C0003); |
|
1642
|
|
|
} |
|
1643
|
|
|
if (!defined('PR_SENDER_SEARCH_KEY')) { |
|
1644
|
|
|
define('PR_SENDER_SEARCH_KEY', 0x0C1D0102); |
|
1645
|
|
|
} |
|
1646
|
|
|
if (!defined('PR_SENDER_ADDRTYPE')) { |
|
1647
|
|
|
define('PR_SENDER_ADDRTYPE', 0x0C1E001E); |
|
1648
|
|
|
} |
|
1649
|
|
|
if (!defined('PR_SENDER_ADDRTYPE_A')) { |
|
1650
|
|
|
define('PR_SENDER_ADDRTYPE_A', 0x0C1E001E); |
|
1651
|
|
|
} |
|
1652
|
|
|
if (!defined('PR_SENDER_EMAIL_ADDRESS')) { |
|
1653
|
|
|
define('PR_SENDER_EMAIL_ADDRESS', 0x0C1F001E); |
|
1654
|
|
|
} |
|
1655
|
|
|
if (!defined('PR_SENDER_EMAIL_ADDRESS_A')) { |
|
1656
|
|
|
define('PR_SENDER_EMAIL_ADDRESS_A', 0x0C1F001E); |
|
1657
|
|
|
} |
|
1658
|
|
|
if (!defined('PR_NDR_STATUS_CODE')) { |
|
1659
|
|
|
define('PR_NDR_STATUS_CODE', 0x0C200003); |
|
1660
|
|
|
} |
|
1661
|
|
|
if (!defined('PR_DSN_REMOTE_MTA')) { |
|
1662
|
|
|
define('PR_DSN_REMOTE_MTA', 0x0C21001E); |
|
1663
|
|
|
} |
|
1664
|
|
|
if (!defined('PR_CURRENT_VERSION')) { |
|
1665
|
|
|
define('PR_CURRENT_VERSION', 0x0E000014); |
|
1666
|
|
|
} |
|
1667
|
|
|
if (!defined('PR_DELETE_AFTER_SUBMIT')) { |
|
1668
|
|
|
define('PR_DELETE_AFTER_SUBMIT', 0x0E01000B); |
|
1669
|
|
|
} |
|
1670
|
|
|
if (!defined('PR_DISPLAY_BCC')) { |
|
1671
|
|
|
define('PR_DISPLAY_BCC', 0x0E02001E); |
|
1672
|
|
|
} |
|
1673
|
|
|
if (!defined('PR_DISPLAY_BCC_A')) { |
|
1674
|
|
|
define('PR_DISPLAY_BCC_A', 0x0E02001E); |
|
1675
|
|
|
} |
|
1676
|
|
|
if (!defined('PR_DISPLAY_CC')) { |
|
1677
|
|
|
define('PR_DISPLAY_CC', 0x0E03001E); |
|
1678
|
|
|
} |
|
1679
|
|
|
if (!defined('PR_DISPLAY_CC_A')) { |
|
1680
|
|
|
define('PR_DISPLAY_CC_A', 0x0E03001E); |
|
1681
|
|
|
} |
|
1682
|
|
|
if (!defined('PR_DISPLAY_TO')) { |
|
1683
|
|
|
define('PR_DISPLAY_TO', 0x0E04001E); |
|
1684
|
|
|
} |
|
1685
|
|
|
if (!defined('PR_DISPLAY_TO_A')) { |
|
1686
|
|
|
define('PR_DISPLAY_TO_A', 0x0E04001E); |
|
1687
|
|
|
} |
|
1688
|
|
|
if (!defined('PR_PARENT_DISPLAY')) { |
|
1689
|
|
|
define('PR_PARENT_DISPLAY', 0x0E05001E); |
|
1690
|
|
|
} |
|
1691
|
|
|
if (!defined('PR_PARENT_DISPLAY_A')) { |
|
1692
|
|
|
define('PR_PARENT_DISPLAY_A', 0x0E05001E); |
|
1693
|
|
|
} |
|
1694
|
|
|
if (!defined('PR_MESSAGE_DELIVERY_TIME')) { |
|
1695
|
|
|
define('PR_MESSAGE_DELIVERY_TIME', 0x0E060040); |
|
1696
|
|
|
} |
|
1697
|
|
|
if (!defined('PR_MESSAGE_FLAGS')) { |
|
1698
|
|
|
define('PR_MESSAGE_FLAGS', 0x0E070003); |
|
1699
|
|
|
} |
|
1700
|
|
|
if (!defined('PR_MESSAGE_SIZE')) { |
|
1701
|
|
|
define('PR_MESSAGE_SIZE', 0x0E080003); |
|
1702
|
|
|
} |
|
1703
|
|
|
if (!defined('PR_MESSAGE_SIZE_EXTENDED')) { |
|
1704
|
|
|
define('PR_MESSAGE_SIZE_EXTENDED', 0x0E080014); |
|
1705
|
|
|
} |
|
1706
|
|
|
if (!defined('PR_PARENT_ENTRYID')) { |
|
1707
|
|
|
define('PR_PARENT_ENTRYID', 0x0E090102); |
|
1708
|
|
|
} |
|
1709
|
|
|
if (!defined('PR_PARENT_SVREID')) { |
|
1710
|
|
|
define('PR_PARENT_SVREID', 0x0E0900FB); |
|
1711
|
|
|
} |
|
1712
|
|
|
if (!defined('PR_SENTMAIL_ENTRYID')) { |
|
1713
|
|
|
define('PR_SENTMAIL_ENTRYID', 0x0E0A0102); |
|
1714
|
|
|
} |
|
1715
|
|
|
if (!defined('PR_CORRELATE')) { |
|
1716
|
|
|
define('PR_CORRELATE', 0x0E0C000B); |
|
1717
|
|
|
} |
|
1718
|
|
|
if (!defined('PR_CORRELATE_MTSID')) { |
|
1719
|
|
|
define('PR_CORRELATE_MTSID', 0x0E0D0102); |
|
1720
|
|
|
} |
|
1721
|
|
|
if (!defined('PR_DISCRETE_VALUES')) { |
|
1722
|
|
|
define('PR_DISCRETE_VALUES', 0x0E0E000B); |
|
1723
|
|
|
} |
|
1724
|
|
|
if (!defined('PR_RESPONSIBILITY')) { |
|
1725
|
|
|
define('PR_RESPONSIBILITY', 0x0E0F000B); |
|
1726
|
|
|
} |
|
1727
|
|
|
if (!defined('PR_SPOOLER_STATUS')) { |
|
1728
|
|
|
define('PR_SPOOLER_STATUS', 0x0E100003); |
|
1729
|
|
|
} |
|
1730
|
|
|
if (!defined('PR_TRANSPORT_STATUS')) { |
|
1731
|
|
|
define('PR_TRANSPORT_STATUS', 0x0E110003); |
|
1732
|
|
|
} |
|
1733
|
|
|
if (!defined('PR_MESSAGE_RECIPIENTS')) { |
|
1734
|
|
|
define('PR_MESSAGE_RECIPIENTS', 0x0E12000D); |
|
1735
|
|
|
} |
|
1736
|
|
|
if (!defined('PR_MESSAGE_ATTACHMENTS')) { |
|
1737
|
|
|
define('PR_MESSAGE_ATTACHMENTS', 0x0E13000D); |
|
1738
|
|
|
} |
|
1739
|
|
|
if (!defined('PR_SUBMIT_FLAGS')) { |
|
1740
|
|
|
define('PR_SUBMIT_FLAGS', 0x0E140003); |
|
1741
|
|
|
} |
|
1742
|
|
|
if (!defined('PR_RECIPIENT_STATUS')) { |
|
1743
|
|
|
define('PR_RECIPIENT_STATUS', 0x0E150003); |
|
1744
|
|
|
} |
|
1745
|
|
|
if (!defined('PR_TRANSPORT_KEY')) { |
|
1746
|
|
|
define('PR_TRANSPORT_KEY', 0x0E160003); |
|
1747
|
|
|
} |
|
1748
|
|
|
if (!defined('PR_MSG_STATUS')) { |
|
1749
|
|
|
define('PR_MSG_STATUS', 0x0E170003); |
|
1750
|
|
|
} |
|
1751
|
|
|
if (!defined('PR_MESSAGE_DOWNLOAD_TIME')) { |
|
1752
|
|
|
define('PR_MESSAGE_DOWNLOAD_TIME', 0x0E180003); |
|
1753
|
|
|
} |
|
1754
|
|
|
if (!defined('PR_CREATION_VERSION')) { |
|
1755
|
|
|
define('PR_CREATION_VERSION', 0x0E190014); |
|
1756
|
|
|
} |
|
1757
|
|
|
if (!defined('PR_MODIFY_VERSION')) { |
|
1758
|
|
|
define('PR_MODIFY_VERSION', 0x0E1A0014); |
|
1759
|
|
|
} |
|
1760
|
|
|
if (!defined('PR_HASATTACH')) { |
|
1761
|
|
|
define('PR_HASATTACH', 0x0E1B000B); |
|
1762
|
|
|
} |
|
1763
|
|
|
if (!defined('PR_BODY_CRC')) { |
|
1764
|
|
|
define('PR_BODY_CRC', 0x0E1C0003); |
|
1765
|
|
|
} |
|
1766
|
|
|
if (!defined('PR_NORMALIZED_SUBJECT')) { |
|
1767
|
|
|
define('PR_NORMALIZED_SUBJECT', 0x0E1D001E); |
|
1768
|
|
|
} |
|
1769
|
|
|
if (!defined('PR_NORMALIZED_SUBJECT_A')) { |
|
1770
|
|
|
define('PR_NORMALIZED_SUBJECT_A', 0x0E1D001E); |
|
1771
|
|
|
} |
|
1772
|
|
|
if (!defined('PR_RTF_IN_SYNC')) { |
|
1773
|
|
|
define('PR_RTF_IN_SYNC', 0x0E1F000B); |
|
1774
|
|
|
} |
|
1775
|
|
|
if (!defined('PR_ATTACH_SIZE')) { |
|
1776
|
|
|
define('PR_ATTACH_SIZE', 0x0E200003); |
|
1777
|
|
|
} |
|
1778
|
|
|
if (!defined('PR_ATTACH_NUM')) { |
|
1779
|
|
|
define('PR_ATTACH_NUM', 0x0E210003); |
|
1780
|
|
|
} |
|
1781
|
|
|
if (!defined('PR_PREPROCESS')) { |
|
1782
|
|
|
define('PR_PREPROCESS', 0x0E22000B); |
|
1783
|
|
|
} |
|
1784
|
|
|
if (!defined('PR_INTERNET_ARTICLE_NUMBER')) { |
|
1785
|
|
|
define('PR_INTERNET_ARTICLE_NUMBER', 0x0E230003); |
|
1786
|
|
|
} |
|
1787
|
|
|
if (!defined('PR_NEWSGROUP_NAME')) { |
|
1788
|
|
|
define('PR_NEWSGROUP_NAME', 0x0E24001E); |
|
1789
|
|
|
} |
|
1790
|
|
|
if (!defined('PR_ORIGINATING_MTA_CERTIFICATE')) { |
|
1791
|
|
|
define('PR_ORIGINATING_MTA_CERTIFICATE', 0x0E250102); |
|
1792
|
|
|
} |
|
1793
|
|
|
if (!defined('PR_PROOF_OF_SUBMISSION')) { |
|
1794
|
|
|
define('PR_PROOF_OF_SUBMISSION', 0x0E260102); |
|
1795
|
|
|
} |
|
1796
|
|
|
if (!defined('PR_NT_SECURITY_DESCRIPTOR')) { |
|
1797
|
|
|
define('PR_NT_SECURITY_DESCRIPTOR', 0x0E270102); |
|
1798
|
|
|
} |
|
1799
|
|
|
if (!defined('PR_PRIMARY_SEND_ACCOUNT')) { |
|
1800
|
|
|
define('PR_PRIMARY_SEND_ACCOUNT', 0x0E28001E); |
|
1801
|
|
|
} |
|
1802
|
|
|
if (!defined('PR_NEXT_SEND_ACCT')) { |
|
1803
|
|
|
define('PR_NEXT_SEND_ACCT', 0x0E29001E); |
|
1804
|
|
|
} |
|
1805
|
|
|
if (!defined('PR_TODO_ITEM_FLAGS')) { |
|
1806
|
|
|
define('PR_TODO_ITEM_FLAGS', 0x0E2B0003); |
|
1807
|
|
|
} |
|
1808
|
|
|
if (!defined('PR_SWAPPED_TODO_STORE')) { |
|
1809
|
|
|
define('PR_SWAPPED_TODO_STORE', 0x0E2C0102); |
|
1810
|
|
|
} |
|
1811
|
|
|
if (!defined('PR_SWAPPED_TODO_DATA')) { |
|
1812
|
|
|
define('PR_SWAPPED_TODO_DATA', 0x0E2D0102); |
|
1813
|
|
|
} |
|
1814
|
|
|
if (!defined('PR_REPL_ITEMID')) { |
|
1815
|
|
|
define('PR_REPL_ITEMID', 0x0E300003); |
|
1816
|
|
|
} |
|
1817
|
|
|
if (!defined('PR_REPL_CHANGENUM')) { |
|
1818
|
|
|
define('PR_REPL_CHANGENUM', 0x0E330014); |
|
1819
|
|
|
} |
|
1820
|
|
|
if (!defined('PR_REPL_VERSIONHISTORY')) { |
|
1821
|
|
|
define('PR_REPL_VERSIONHISTORY', 0x0E340102); |
|
1822
|
|
|
} |
|
1823
|
|
|
if (!defined('PR_REPL_FLAGS')) { |
|
1824
|
|
|
define('PR_REPL_FLAGS', 0x0E380003); |
|
1825
|
|
|
} |
|
1826
|
|
|
if (!defined('PR_REPL_COPIEDFROM_VERSIONHISTORY')) { |
|
1827
|
|
|
define('PR_REPL_COPIEDFROM_VERSIONHISTORY', 0x0E3C0102); |
|
1828
|
|
|
} |
|
1829
|
|
|
if (!defined('PR_REPL_COPIEDFROM_ITEMID')) { |
|
1830
|
|
|
define('PR_REPL_COPIEDFROM_ITEMID', 0x0E3D0102); |
|
1831
|
|
|
} |
|
1832
|
|
|
if (!defined('PR_CREATOR_SID')) { |
|
1833
|
|
|
define('PR_CREATOR_SID', 0x0E580102); |
|
1834
|
|
|
} |
|
1835
|
|
|
if (!defined('PR_LAST_MODIFIER_SID')) { |
|
1836
|
|
|
define('PR_LAST_MODIFIER_SID', 0x0E590102); |
|
1837
|
|
|
} |
|
1838
|
|
|
if (!defined('PR_CI_SEARCH_ENABLED')) { |
|
1839
|
|
|
define('PR_CI_SEARCH_ENABLED', 0x0E5C000B); |
|
1840
|
|
|
} |
|
1841
|
|
|
if (!defined('PR_READ')) { |
|
1842
|
|
|
define('PR_READ', 0x0E69000B); |
|
1843
|
|
|
} |
|
1844
|
|
|
if (!defined('PR_NT_SECURITY_DESCRIPTOR_AS_XML')) { |
|
1845
|
|
|
define('PR_NT_SECURITY_DESCRIPTOR_AS_XML', 0x0E6A001E); |
|
1846
|
|
|
} |
|
1847
|
|
|
if (!defined('PR_TRUST_SENDER')) { |
|
1848
|
|
|
define('PR_TRUST_SENDER', 0x0E790003); |
|
1849
|
|
|
} |
|
1850
|
|
|
if (!defined('PR_EXTENDED_RULE_MSG_ACTIONS')) { |
|
1851
|
|
|
define('PR_EXTENDED_RULE_MSG_ACTIONS', 0x0E990102); |
|
1852
|
|
|
} |
|
1853
|
|
|
if (!defined('PR_EXTENDED_RULE_MSG_CONDITION')) { |
|
1854
|
|
|
define('PR_EXTENDED_RULE_MSG_CONDITION', 0x0E9A0102); |
|
1855
|
|
|
} |
|
1856
|
|
|
if (!defined('PR_EXTENDED_RULE_SIZE_LIMIT')) { |
|
1857
|
|
|
define('PR_EXTENDED_RULE_SIZE_LIMIT', 0x0E9B0003); |
|
1858
|
|
|
} |
|
1859
|
|
|
if (!defined('PR_ASSOCIATED_SHARING_PROVIDER')) { |
|
1860
|
|
|
define('PR_ASSOCIATED_SHARING_PROVIDER', 0x0EA00048); |
|
1861
|
|
|
} |
|
1862
|
|
|
if (!defined('PR_SEARCH_ATTACHMENTS')) { |
|
1863
|
|
|
define('PR_SEARCH_ATTACHMENTS', 0x0EA5001E); |
|
1864
|
|
|
} |
|
1865
|
|
|
if (!defined('PR_SEARCH_RECIP_EMAIL_TO')) { |
|
1866
|
|
|
define('PR_SEARCH_RECIP_EMAIL_TO', 0x0EA6001E); |
|
1867
|
|
|
} |
|
1868
|
|
|
if (!defined('PR_SEARCH_RECIP_EMAIL_CC')) { |
|
1869
|
|
|
define('PR_SEARCH_RECIP_EMAIL_CC', 0x0EA7001E); |
|
1870
|
|
|
} |
|
1871
|
|
|
if (!defined('PR_SEARCH_RECIP_EMAIL_BCC')) { |
|
1872
|
|
|
define('PR_SEARCH_RECIP_EMAIL_BCC', 0x0EA8001E); |
|
1873
|
|
|
} |
|
1874
|
|
|
if (!defined('PR_ACCESS')) { |
|
1875
|
|
|
define('PR_ACCESS', 0x0FF40003); |
|
1876
|
|
|
} |
|
1877
|
|
|
if (!defined('PR_ROW_TYPE')) { |
|
1878
|
|
|
define('PR_ROW_TYPE', 0x0FF50003); |
|
1879
|
|
|
} |
|
1880
|
|
|
if (!defined('PR_INSTANCE_KEY')) { |
|
1881
|
|
|
define('PR_INSTANCE_KEY', 0x0FF60102); |
|
1882
|
|
|
} |
|
1883
|
|
|
if (!defined('PR_INSTANCE_SVREID')) { |
|
1884
|
|
|
define('PR_INSTANCE_SVREID', 0x0FF600FB); |
|
1885
|
|
|
} |
|
1886
|
|
|
if (!defined('PR_ACCESS_LEVEL')) { |
|
1887
|
|
|
define('PR_ACCESS_LEVEL', 0x0FF70003); |
|
1888
|
|
|
} |
|
1889
|
|
|
if (!defined('PR_MAPPING_SIGNATURE')) { |
|
1890
|
|
|
define('PR_MAPPING_SIGNATURE', 0x0FF80102); |
|
1891
|
|
|
} |
|
1892
|
|
|
if (!defined('PR_RECORD_KEY')) { |
|
1893
|
|
|
define('PR_RECORD_KEY', 0x0FF90102); |
|
1894
|
|
|
} |
|
1895
|
|
|
if (!defined('PR_STORE_RECORD_KEY')) { |
|
1896
|
|
|
define('PR_STORE_RECORD_KEY', 0x0FFA0102); |
|
1897
|
|
|
} |
|
1898
|
|
|
if (!defined('PR_STORE_ENTRYID')) { |
|
1899
|
|
|
define('PR_STORE_ENTRYID', 0x0FFB0102); |
|
1900
|
|
|
} |
|
1901
|
|
|
if (!defined('PR_MINI_ICON')) { |
|
1902
|
|
|
define('PR_MINI_ICON', 0x0FFC0102); |
|
1903
|
|
|
} |
|
1904
|
|
|
if (!defined('PR_ICON')) { |
|
1905
|
|
|
define('PR_ICON', 0x0FFD0102); |
|
1906
|
|
|
} |
|
1907
|
|
|
if (!defined('PR_OBJECT_TYPE')) { |
|
1908
|
|
|
define('PR_OBJECT_TYPE', 0x0FFE0003); |
|
1909
|
|
|
} |
|
1910
|
|
|
if (!defined('PR_ENTRYID')) { |
|
1911
|
|
|
define('PR_ENTRYID', 0x0FFF0102); |
|
1912
|
|
|
} |
|
1913
|
|
|
if (!defined('PR_BODY')) { |
|
1914
|
|
|
define('PR_BODY', 0x1000001E); |
|
1915
|
|
|
} |
|
1916
|
|
|
if (!defined('PR_BODY_A')) { |
|
1917
|
|
|
define('PR_BODY_A', 0x1000001E); |
|
1918
|
|
|
} |
|
1919
|
|
|
if (!defined('PR_BODY_W')) { |
|
1920
|
|
|
define('PR_BODY_W', 0x1000001E); |
|
1921
|
|
|
} |
|
1922
|
|
|
if (!defined('PR_REPORT_TEXT')) { |
|
1923
|
|
|
define('PR_REPORT_TEXT', 0x1001001E); |
|
1924
|
|
|
} |
|
1925
|
|
|
if (!defined('PR_ORIGINATOR_AND_DL_EXPANSION_HISTORY')) { |
|
1926
|
|
|
define('PR_ORIGINATOR_AND_DL_EXPANSION_HISTORY', 0x10020102); |
|
1927
|
|
|
} |
|
1928
|
|
|
if (!defined('PR_REPORTING_DL_NAME')) { |
|
1929
|
|
|
define('PR_REPORTING_DL_NAME', 0x10030102); |
|
1930
|
|
|
} |
|
1931
|
|
|
if (!defined('PR_REPORTING_MTA_CERTIFICATE')) { |
|
1932
|
|
|
define('PR_REPORTING_MTA_CERTIFICATE', 0x10040102); |
|
1933
|
|
|
} |
|
1934
|
|
|
if (!defined('PR_RTF_SYNC_BODY_CRC')) { |
|
1935
|
|
|
define('PR_RTF_SYNC_BODY_CRC', 0x10060003); |
|
1936
|
|
|
} |
|
1937
|
|
|
if (!defined('PR_RTF_SYNC_BODY_COUNT')) { |
|
1938
|
|
|
define('PR_RTF_SYNC_BODY_COUNT', 0x10070003); |
|
1939
|
|
|
} |
|
1940
|
|
|
if (!defined('PR_RTF_SYNC_BODY_TAG')) { |
|
1941
|
|
|
define('PR_RTF_SYNC_BODY_TAG', 0x1008001E); |
|
1942
|
|
|
} |
|
1943
|
|
|
if (!defined('PR_RTF_COMPRESSED')) { |
|
1944
|
|
|
define('PR_RTF_COMPRESSED', 0x10090102); |
|
1945
|
|
|
} |
|
1946
|
|
|
if (!defined('PR_RTF_SYNC_PREFIX_COUNT')) { |
|
1947
|
|
|
define('PR_RTF_SYNC_PREFIX_COUNT', 0x10100003); |
|
1948
|
|
|
} |
|
1949
|
|
|
if (!defined('PR_RTF_SYNC_TRAILING_COUNT')) { |
|
1950
|
|
|
define('PR_RTF_SYNC_TRAILING_COUNT', 0x10110003); |
|
1951
|
|
|
} |
|
1952
|
|
|
if (!defined('PR_ORIGINALLY_INTENDED_RECIP_ENTRYID')) { |
|
1953
|
|
|
define('PR_ORIGINALLY_INTENDED_RECIP_ENTRYID', 0x10120102); |
|
1954
|
|
|
} |
|
1955
|
|
|
if (!defined('PR_BODY_HTML')) { |
|
1956
|
|
|
define('PR_BODY_HTML', 0x1013001E); |
|
1957
|
|
|
} |
|
1958
|
|
|
if (!defined('PR_BODY_HTML_A')) { |
|
1959
|
|
|
define('PR_BODY_HTML_A', 0x1013001E); |
|
1960
|
|
|
} |
|
1961
|
|
|
if (!defined('PR_HTML')) { |
|
1962
|
|
|
define('PR_HTML', 0x10130102); |
|
1963
|
|
|
} |
|
1964
|
|
|
if (!defined('PR_BODY_CONTENT_LOCATION')) { |
|
1965
|
|
|
define('PR_BODY_CONTENT_LOCATION', 0x1014001E); |
|
1966
|
|
|
} |
|
1967
|
|
|
if (!defined('PR_BODY_CONTENT_LOCATION_A')) { |
|
1968
|
|
|
define('PR_BODY_CONTENT_LOCATION_A', 0x1014001E); |
|
1969
|
|
|
} |
|
1970
|
|
|
if (!defined('PR_BODY_CONTENT_ID')) { |
|
1971
|
|
|
define('PR_BODY_CONTENT_ID', 0x1015001E); |
|
1972
|
|
|
} |
|
1973
|
|
|
if (!defined('PR_BODY_CONTENT_ID_A')) { |
|
1974
|
|
|
define('PR_BODY_CONTENT_ID_A', 0x1015001E); |
|
1975
|
|
|
} |
|
1976
|
|
|
if (!defined('PR_NATIVE_BODY_INFO')) { |
|
1977
|
|
|
define('PR_NATIVE_BODY_INFO', 0x10160003); |
|
1978
|
|
|
} |
|
1979
|
|
|
if (!defined('PR_INTERNET_APPROVED')) { |
|
1980
|
|
|
define('PR_INTERNET_APPROVED', 0x1030001E); |
|
1981
|
|
|
} |
|
1982
|
|
|
if (!defined('PR_INTERNET_CONTROL')) { |
|
1983
|
|
|
define('PR_INTERNET_CONTROL', 0x1031001E); |
|
1984
|
|
|
} |
|
1985
|
|
|
if (!defined('PR_INTERNET_DISTRIBUTION')) { |
|
1986
|
|
|
define('PR_INTERNET_DISTRIBUTION', 0x1032001E); |
|
1987
|
|
|
} |
|
1988
|
|
|
if (!defined('PR_INTERNET_FOLLOWUP_TO')) { |
|
1989
|
|
|
define('PR_INTERNET_FOLLOWUP_TO', 0x1033001E); |
|
1990
|
|
|
} |
|
1991
|
|
|
if (!defined('PR_INTERNET_LINES')) { |
|
1992
|
|
|
define('PR_INTERNET_LINES', 0x10340003); |
|
1993
|
|
|
} |
|
1994
|
|
|
if (!defined('PR_INTERNET_MESSAGE_ID')) { |
|
1995
|
|
|
define('PR_INTERNET_MESSAGE_ID', 0x1035001E); |
|
1996
|
|
|
} |
|
1997
|
|
|
if (!defined('PR_INTERNET_MESSAGE_ID_A')) { |
|
1998
|
|
|
define('PR_INTERNET_MESSAGE_ID_A', 0x1035001E); |
|
1999
|
|
|
} |
|
2000
|
|
|
if (!defined('PR_INTERNET_NEWSGROUPS')) { |
|
2001
|
|
|
define('PR_INTERNET_NEWSGROUPS', 0x1036001E); |
|
2002
|
|
|
} |
|
2003
|
|
|
if (!defined('PR_INTERNET_ORGANIZATION')) { |
|
2004
|
|
|
define('PR_INTERNET_ORGANIZATION', 0x1037001E); |
|
2005
|
|
|
} |
|
2006
|
|
|
if (!defined('PR_INTERNET_NNTP_PATH')) { |
|
2007
|
|
|
define('PR_INTERNET_NNTP_PATH', 0x1038001E); |
|
2008
|
|
|
} |
|
2009
|
|
|
if (!defined('PR_INTERNET_REFERENCES')) { |
|
2010
|
|
|
define('PR_INTERNET_REFERENCES', 0x1039001E); |
|
2011
|
|
|
} |
|
2012
|
|
|
if (!defined('PR_INTERNET_REFERENCES_A')) { |
|
2013
|
|
|
define('PR_INTERNET_REFERENCES_A', 0x1039001E); |
|
2014
|
|
|
} |
|
2015
|
|
|
if (!defined('PR_SUPERSEDES')) { |
|
2016
|
|
|
define('PR_SUPERSEDES', 0x103A001E); |
|
2017
|
|
|
} |
|
2018
|
|
|
if (!defined('PR_POST_FOLDER_ENTRIES')) { |
|
2019
|
|
|
define('PR_POST_FOLDER_ENTRIES', 0x103B0102); |
|
2020
|
|
|
} |
|
2021
|
|
|
if (!defined('PR_POST_FOLDER_NAMES')) { |
|
2022
|
|
|
define('PR_POST_FOLDER_NAMES', 0x103C001E); |
|
2023
|
|
|
} |
|
2024
|
|
|
if (!defined('PR_POST_REPLY_FOLDER_ENTRIES')) { |
|
2025
|
|
|
define('PR_POST_REPLY_FOLDER_ENTRIES', 0x103D0102); |
|
2026
|
|
|
} |
|
2027
|
|
|
if (!defined('PR_POST_REPLY_FOLDER_NAMES')) { |
|
2028
|
|
|
define('PR_POST_REPLY_FOLDER_NAMES', 0x103E001E); |
|
2029
|
|
|
} |
|
2030
|
|
|
if (!defined('PR_POST_REPLY_DENIED')) { |
|
2031
|
|
|
define('PR_POST_REPLY_DENIED', 0x103F0102); |
|
2032
|
|
|
} |
|
2033
|
|
|
if (!defined('PR_NNTP_XREF')) { |
|
2034
|
|
|
define('PR_NNTP_XREF', 0x1040001E); |
|
2035
|
|
|
} |
|
2036
|
|
|
if (!defined('PR_INTERNET_PRECEDENCE')) { |
|
2037
|
|
|
define('PR_INTERNET_PRECEDENCE', 0x1041001E); |
|
2038
|
|
|
} |
|
2039
|
|
|
if (!defined('PR_IN_REPLY_TO_ID')) { |
|
2040
|
|
|
define('PR_IN_REPLY_TO_ID', 0x1042001E); |
|
2041
|
|
|
} |
|
2042
|
|
|
if (!defined('PR_IN_REPLY_TO_ID_A')) { |
|
2043
|
|
|
define('PR_IN_REPLY_TO_ID_A', 0x1042001E); |
|
2044
|
|
|
} |
|
2045
|
|
|
if (!defined('PR_LIST_HELP')) { |
|
2046
|
|
|
define('PR_LIST_HELP', 0x1043001E); |
|
2047
|
|
|
} |
|
2048
|
|
|
if (!defined('PR_LIST_HELP_A')) { |
|
2049
|
|
|
define('PR_LIST_HELP_A', 0x1043001E); |
|
2050
|
|
|
} |
|
2051
|
|
|
if (!defined('PR_LIST_SUBSCRIBE')) { |
|
2052
|
|
|
define('PR_LIST_SUBSCRIBE', 0x1044001E); |
|
2053
|
|
|
} |
|
2054
|
|
|
if (!defined('PR_LIST_SUBSCRIBE_A')) { |
|
2055
|
|
|
define('PR_LIST_SUBSCRIBE_A', 0x1044001E); |
|
2056
|
|
|
} |
|
2057
|
|
|
if (!defined('PR_LIST_UNSUBSCRIBE')) { |
|
2058
|
|
|
define('PR_LIST_UNSUBSCRIBE', 0x1045001E); |
|
2059
|
|
|
} |
|
2060
|
|
|
if (!defined('PR_LIST_UNSUBSCRIBE_A')) { |
|
2061
|
|
|
define('PR_LIST_UNSUBSCRIBE_A', 0x1045001E); |
|
2062
|
|
|
} |
|
2063
|
|
|
if (!defined('PR_INTERNET_RETURN_PATH')) { |
|
2064
|
|
|
define('PR_INTERNET_RETURN_PATH', 0x1046001E); |
|
2065
|
|
|
} |
|
2066
|
|
|
if (!defined('PR_ICON_INDEX')) { |
|
2067
|
|
|
define('PR_ICON_INDEX', 0x10800003); |
|
2068
|
|
|
} |
|
2069
|
|
|
if (!defined('PR_LAST_VERB_EXECUTED')) { |
|
2070
|
|
|
define('PR_LAST_VERB_EXECUTED', 0x10810003); |
|
2071
|
|
|
} |
|
2072
|
|
|
if (!defined('PR_LAST_VERB_EXECUTION_TIME')) { |
|
2073
|
|
|
define('PR_LAST_VERB_EXECUTION_TIME', 0x10820040); |
|
2074
|
|
|
} |
|
2075
|
|
|
if (!defined('PR_FLAG_STATUS')) { |
|
2076
|
|
|
define('PR_FLAG_STATUS', 0x10900003); |
|
2077
|
|
|
} |
|
2078
|
|
|
if (!defined('PR_FLAG_COMPLETE_TIME')) { |
|
2079
|
|
|
define('PR_FLAG_COMPLETE_TIME', 0x10910040); |
|
2080
|
|
|
} |
|
2081
|
|
|
if (!defined('PR_FOLLOWUP_ICON')) { |
|
2082
|
|
|
define('PR_FOLLOWUP_ICON', 0x10950003); |
|
2083
|
|
|
} |
|
2084
|
|
|
if (!defined('PR_BLOCK_STATUS')) { |
|
2085
|
|
|
define('PR_BLOCK_STATUS', 0x10960003); |
|
2086
|
|
|
} |
|
2087
|
|
|
if (!defined('PR_ITEM_TMPFLAGS')) { |
|
2088
|
|
|
define('PR_ITEM_TMPFLAGS', 0x10970003); |
|
2089
|
|
|
} |
|
2090
|
|
|
if (!defined('PR_CONFLICT_ITEMS')) { |
|
2091
|
|
|
define('PR_CONFLICT_ITEMS', 0x10981102); |
|
2092
|
|
|
} |
|
2093
|
|
|
if (!defined('PR_CDO_RECURRENCEID')) { |
|
2094
|
|
|
define('PR_CDO_RECURRENCEID', 0x10C50040); |
|
2095
|
|
|
} |
|
2096
|
|
|
if (!defined('PR_ATTR_HIDDEN')) { |
|
2097
|
|
|
define('PR_ATTR_HIDDEN', 0x10F4000B); |
|
2098
|
|
|
} |
|
2099
|
|
|
if (!defined('PR_ATTR_HIDDEN_GROMOX')) { |
|
2100
|
|
|
define('PR_ATTR_HIDDEN_GROMOX', 0x10F40003); |
|
2101
|
|
|
} |
|
2102
|
|
|
if (!defined('PR_ATTR_SYSTEM')) { |
|
2103
|
|
|
define('PR_ATTR_SYSTEM', 0x10F5000B); |
|
2104
|
|
|
} |
|
2105
|
|
|
if (!defined('PR_ATTR_READONLY')) { |
|
2106
|
|
|
define('PR_ATTR_READONLY', 0x10F6000B); |
|
2107
|
|
|
} |
|
2108
|
|
|
if (!defined('PR_ROWID')) { |
|
2109
|
|
|
define('PR_ROWID', 0x30000003); |
|
2110
|
|
|
} |
|
2111
|
|
|
if (!defined('PR_DISPLAY_NAME')) { |
|
2112
|
|
|
define('PR_DISPLAY_NAME', 0x3001001E); |
|
2113
|
|
|
} |
|
2114
|
|
|
if (!defined('PR_DISPLAY_NAME_A')) { |
|
2115
|
|
|
define('PR_DISPLAY_NAME_A', 0x3001001E); |
|
2116
|
|
|
} |
|
2117
|
|
|
if (!defined('PR_ADDRTYPE')) { |
|
2118
|
|
|
define('PR_ADDRTYPE', 0x3002001E); |
|
2119
|
|
|
} |
|
2120
|
|
|
if (!defined('PR_ADDRTYPE_A')) { |
|
2121
|
|
|
define('PR_ADDRTYPE_A', 0x3002001E); |
|
2122
|
|
|
} |
|
2123
|
|
|
if (!defined('PR_EMAIL_ADDRESS')) { |
|
2124
|
|
|
define('PR_EMAIL_ADDRESS', 0x3003001E); |
|
2125
|
|
|
} |
|
2126
|
|
|
if (!defined('PR_EMAIL_ADDRESS_A')) { |
|
2127
|
|
|
define('PR_EMAIL_ADDRESS_A', 0x3003001E); |
|
2128
|
|
|
} |
|
2129
|
|
|
if (!defined('PR_COMMENT')) { |
|
2130
|
|
|
define('PR_COMMENT', 0x3004001E); |
|
2131
|
|
|
} |
|
2132
|
|
|
if (!defined('PR_DEPTH')) { |
|
2133
|
|
|
define('PR_DEPTH', 0x30050003); |
|
2134
|
|
|
} |
|
2135
|
|
|
if (!defined('PR_PROVIDER_DISPLAY')) { |
|
2136
|
|
|
define('PR_PROVIDER_DISPLAY', 0x3006001E); |
|
2137
|
|
|
} |
|
2138
|
|
|
if (!defined('PR_CREATION_TIME')) { |
|
2139
|
|
|
define('PR_CREATION_TIME', 0x30070040); |
|
2140
|
|
|
} |
|
2141
|
|
|
if (!defined('PR_LAST_MODIFICATION_TIME')) { |
|
2142
|
|
|
define('PR_LAST_MODIFICATION_TIME', 0x30080040); |
|
2143
|
|
|
} |
|
2144
|
|
|
if (!defined('PR_RESOURCE_FLAGS')) { |
|
2145
|
|
|
define('PR_RESOURCE_FLAGS', 0x30090003); |
|
2146
|
|
|
} |
|
2147
|
|
|
if (!defined('PR_PROVIDER_DLL_NAME')) { |
|
2148
|
|
|
define('PR_PROVIDER_DLL_NAME', 0x300A001E); |
|
2149
|
|
|
} |
|
2150
|
|
|
if (!defined('PR_SEARCH_KEY')) { |
|
2151
|
|
|
define('PR_SEARCH_KEY', 0x300B0102); |
|
2152
|
|
|
} |
|
2153
|
|
|
if (!defined('PR_PROVIDER_UID')) { |
|
2154
|
|
|
define('PR_PROVIDER_UID', 0x300C0102); |
|
2155
|
|
|
} |
|
2156
|
|
|
if (!defined('PR_PROVIDER_ORDINAL')) { |
|
2157
|
|
|
define('PR_PROVIDER_ORDINAL', 0x300D0003); |
|
2158
|
|
|
} |
|
2159
|
|
|
if (!defined('PR_TARGET_ENTRYID')) { |
|
2160
|
|
|
define('PR_TARGET_ENTRYID', 0x30100102); |
|
2161
|
|
|
} |
|
2162
|
|
|
if (!defined('PR_CONVERSATION_ID')) { |
|
2163
|
|
|
define('PR_CONVERSATION_ID', 0x30130102); |
|
2164
|
|
|
} |
|
2165
|
|
|
if (!defined('PR_CONVERSATION_INDEX_TRACKING')) { |
|
2166
|
|
|
define('PR_CONVERSATION_INDEX_TRACKING', 0x3016000B); |
|
2167
|
|
|
} |
|
2168
|
|
|
if (!defined('PR_ARCHIVE_TAG')) { |
|
2169
|
|
|
define('PR_ARCHIVE_TAG', 0x30180102); |
|
2170
|
|
|
} |
|
2171
|
|
|
if (!defined('PR_POLICY_TAG')) { |
|
2172
|
|
|
define('PR_POLICY_TAG', 0x30190102); |
|
2173
|
|
|
} |
|
2174
|
|
|
if (!defined('PR_RETENTION_PERIOD')) { |
|
2175
|
|
|
define('PR_RETENTION_PERIOD', 0x301A0003); |
|
2176
|
|
|
} |
|
2177
|
|
|
if (!defined('PR_START_DATE_ETC')) { |
|
2178
|
|
|
define('PR_START_DATE_ETC', 0x301B0102); |
|
2179
|
|
|
} |
|
2180
|
|
|
if (!defined('PR_RETENTION_DATE')) { |
|
2181
|
|
|
define('PR_RETENTION_DATE', 0x301C0040); |
|
2182
|
|
|
} |
|
2183
|
|
|
if (!defined('PR_RETENTION_FLAGS')) { |
|
2184
|
|
|
define('PR_RETENTION_FLAGS', 0x301D0003); |
|
2185
|
|
|
} |
|
2186
|
|
|
if (!defined('PR_ARCHIVE_PERIOD')) { |
|
2187
|
|
|
define('PR_ARCHIVE_PERIOD', 0x301E0003); |
|
2188
|
|
|
} |
|
2189
|
|
|
if (!defined('PR_ARCHIVE_DATE')) { |
|
2190
|
|
|
define('PR_ARCHIVE_DATE', 0x301F0040); |
|
2191
|
|
|
} |
|
2192
|
|
|
if (!defined('PR_SORT_POSITION')) { |
|
2193
|
|
|
define('PR_SORT_POSITION', 0x30200102); |
|
2194
|
|
|
} |
|
2195
|
|
|
if (!defined('PR_SORT_PARENTID')) { |
|
2196
|
|
|
define('PR_SORT_PARENTID', 0x30210102); |
|
2197
|
|
|
} |
|
2198
|
|
|
if (!defined('PR_FORM_VERSION')) { |
|
2199
|
|
|
define('PR_FORM_VERSION', 0x3301001E); |
|
2200
|
|
|
} |
|
2201
|
|
|
if (!defined('PR_FORM_CLSID')) { |
|
2202
|
|
|
define('PR_FORM_CLSID', 0x33020048); |
|
2203
|
|
|
} |
|
2204
|
|
|
if (!defined('PR_FORM_CONTACT_NAME')) { |
|
2205
|
|
|
define('PR_FORM_CONTACT_NAME', 0x3303001E); |
|
2206
|
|
|
} |
|
2207
|
|
|
if (!defined('PR_FORM_CATEGORY')) { |
|
2208
|
|
|
define('PR_FORM_CATEGORY', 0x3304001E); |
|
2209
|
|
|
} |
|
2210
|
|
|
if (!defined('PR_FORM_CATEGORY_SUB')) { |
|
2211
|
|
|
define('PR_FORM_CATEGORY_SUB', 0x3305001E); |
|
2212
|
|
|
} |
|
2213
|
|
|
if (!defined('PR_FORM_HOST_MAP')) { |
|
2214
|
|
|
define('PR_FORM_HOST_MAP', 0x33061003); |
|
2215
|
|
|
} |
|
2216
|
|
|
if (!defined('PR_FORM_HIDDEN')) { |
|
2217
|
|
|
define('PR_FORM_HIDDEN', 0x3307000B); |
|
2218
|
|
|
} |
|
2219
|
|
|
if (!defined('PR_FORM_DESIGNER_NAME')) { |
|
2220
|
|
|
define('PR_FORM_DESIGNER_NAME', 0x3308001E); |
|
2221
|
|
|
} |
|
2222
|
|
|
if (!defined('PR_FORM_DESIGNER_GUID')) { |
|
2223
|
|
|
define('PR_FORM_DESIGNER_GUID', 0x33090048); |
|
2224
|
|
|
} |
|
2225
|
|
|
if (!defined('PR_FORM_MESSAGE_BEHAVIOR')) { |
|
2226
|
|
|
define('PR_FORM_MESSAGE_BEHAVIOR', 0x330A0003); |
|
2227
|
|
|
} |
|
2228
|
|
|
if (!defined('PR_DEFAULT_STORE')) { |
|
2229
|
|
|
define('PR_DEFAULT_STORE', 0x3400000B); |
|
2230
|
|
|
} |
|
2231
|
|
|
if (!defined('PR_STORE_SUPPORT_MASK')) { |
|
2232
|
|
|
define('PR_STORE_SUPPORT_MASK', 0x340D0003); |
|
2233
|
|
|
} |
|
2234
|
|
|
if (!defined('PR_STORE_STATE')) { |
|
2235
|
|
|
define('PR_STORE_STATE', 0x340E0003); |
|
2236
|
|
|
} |
|
2237
|
|
|
if (!defined('PR_STORE_UNICODE_MASK')) { |
|
2238
|
|
|
define('PR_STORE_UNICODE_MASK', 0x340F0003); |
|
2239
|
|
|
} |
|
2240
|
|
|
if (!defined('PR_IPM_SUBTREE_SEARCH_KEY')) { |
|
2241
|
|
|
define('PR_IPM_SUBTREE_SEARCH_KEY', 0x34100102); |
|
2242
|
|
|
} |
|
2243
|
|
|
if (!defined('PR_IPM_OUTBOX_SEARCH_KEY')) { |
|
2244
|
|
|
define('PR_IPM_OUTBOX_SEARCH_KEY', 0x34110102); |
|
2245
|
|
|
} |
|
2246
|
|
|
if (!defined('PR_IPM_WASTEBASKET_SEARCH_KEY')) { |
|
2247
|
|
|
define('PR_IPM_WASTEBASKET_SEARCH_KEY', 0x34120102); |
|
2248
|
|
|
} |
|
2249
|
|
|
if (!defined('PR_IPM_SENTMAIL_SEARCH_KEY')) { |
|
2250
|
|
|
define('PR_IPM_SENTMAIL_SEARCH_KEY', 0x34130102); |
|
2251
|
|
|
} |
|
2252
|
|
|
if (!defined('PR_MDB_PROVIDER')) { |
|
2253
|
|
|
define('PR_MDB_PROVIDER', 0x34140102); |
|
2254
|
|
|
} |
|
2255
|
|
|
if (!defined('PR_RECEIVE_FOLDER_SETTINGS')) { |
|
2256
|
|
|
define('PR_RECEIVE_FOLDER_SETTINGS', 0x3415000D); |
|
2257
|
|
|
} |
|
2258
|
|
|
if (!defined('PR_QUOTA_WARNING')) { |
|
2259
|
|
|
define('PR_QUOTA_WARNING', 0x34180003); |
|
2260
|
|
|
} |
|
2261
|
|
|
if (!defined('PR_QUOTA_SEND')) { |
|
2262
|
|
|
define('PR_QUOTA_SEND', 0x34190003); |
|
2263
|
|
|
} |
|
2264
|
|
|
if (!defined('PR_QUOTA_RECEIVE')) { |
|
2265
|
|
|
define('PR_QUOTA_RECEIVE', 0x341A0003); |
|
2266
|
|
|
} |
|
2267
|
|
|
if (!defined('PR_ROOT_ENTRYID')) { |
|
2268
|
|
|
define('PR_ROOT_ENTRYID', 0x35D80102); |
|
2269
|
|
|
} |
|
2270
|
|
|
if (!defined('PR_VALID_FOLDER_MASK')) { |
|
2271
|
|
|
define('PR_VALID_FOLDER_MASK', 0x35DF0003); |
|
2272
|
|
|
} |
|
2273
|
|
|
if (!defined('PR_IPM_SUBTREE_ENTRYID')) { |
|
2274
|
|
|
define('PR_IPM_SUBTREE_ENTRYID', 0x35E00102); |
|
2275
|
|
|
} |
|
2276
|
|
|
if (!defined('PR_IPM_INBOX_ENTRYID')) { |
|
2277
|
|
|
define('PR_IPM_INBOX_ENTRYID', 0x35E10102); |
|
2278
|
|
|
} |
|
2279
|
|
|
if (!defined('PR_IPM_OUTBOX_ENTRYID')) { |
|
2280
|
|
|
define('PR_IPM_OUTBOX_ENTRYID', 0x35E20102); |
|
2281
|
|
|
} |
|
2282
|
|
|
if (!defined('PR_IPM_WASTEBASKET_ENTRYID')) { |
|
2283
|
|
|
define('PR_IPM_WASTEBASKET_ENTRYID', 0x35E30102); |
|
2284
|
|
|
} |
|
2285
|
|
|
if (!defined('PR_IPM_SENTMAIL_ENTRYID')) { |
|
2286
|
|
|
define('PR_IPM_SENTMAIL_ENTRYID', 0x35E40102); |
|
2287
|
|
|
} |
|
2288
|
|
|
if (!defined('PR_VIEWS_ENTRYID')) { |
|
2289
|
|
|
define('PR_VIEWS_ENTRYID', 0x35E50102); |
|
2290
|
|
|
} |
|
2291
|
|
|
if (!defined('PR_COMMON_VIEWS_ENTRYID')) { |
|
2292
|
|
|
define('PR_COMMON_VIEWS_ENTRYID', 0x35E60102); |
|
2293
|
|
|
} |
|
2294
|
|
|
if (!defined('PR_FINDER_ENTRYID')) { |
|
2295
|
|
|
define('PR_FINDER_ENTRYID', 0x35E70102); |
|
2296
|
|
|
} |
|
2297
|
|
|
if (!defined('PR_SYNC_ROOT_ENTRYID')) { |
|
2298
|
|
|
define('PR_SYNC_ROOT_ENTRYID', 0x35EA0102); |
|
2299
|
|
|
} |
|
2300
|
|
|
if (!defined('PR_VOICEMAIL_FOLDER_ENTRYID')) { |
|
2301
|
|
|
define('PR_VOICEMAIL_FOLDER_ENTRYID', 0x35EB0102); |
|
2302
|
|
|
} |
|
2303
|
|
|
if (!defined('PR_CONTAINER_FLAGS')) { |
|
2304
|
|
|
define('PR_CONTAINER_FLAGS', 0x36000003); |
|
2305
|
|
|
} |
|
2306
|
|
|
if (!defined('PR_FOLDER_TYPE')) { |
|
2307
|
|
|
define('PR_FOLDER_TYPE', 0x36010003); |
|
2308
|
|
|
} |
|
2309
|
|
|
if (!defined('PR_CONTENT_COUNT')) { |
|
2310
|
|
|
define('PR_CONTENT_COUNT', 0x36020003); |
|
2311
|
|
|
} |
|
2312
|
|
|
if (!defined('PR_CONTENT_UNREAD')) { |
|
2313
|
|
|
define('PR_CONTENT_UNREAD', 0x36030003); |
|
2314
|
|
|
} |
|
2315
|
|
|
if (!defined('PR_CREATE_TEMPLATES')) { |
|
2316
|
|
|
define('PR_CREATE_TEMPLATES', 0x3604000D); |
|
2317
|
|
|
} |
|
2318
|
|
|
if (!defined('PR_SEARCH')) { |
|
2319
|
|
|
define('PR_SEARCH', 0x3607000D); |
|
2320
|
|
|
} |
|
2321
|
|
|
if (!defined('PR_SELECTABLE')) { |
|
2322
|
|
|
define('PR_SELECTABLE', 0x3609000B); |
|
2323
|
|
|
} |
|
2324
|
|
|
if (!defined('PR_SUBFOLDERS')) { |
|
2325
|
|
|
define('PR_SUBFOLDERS', 0x360A000B); |
|
2326
|
|
|
} |
|
2327
|
|
|
if (!defined('PR_STATUS')) { |
|
2328
|
|
|
define('PR_STATUS', 0x360B0003); |
|
2329
|
|
|
} |
|
2330
|
|
|
if (!defined('PR_ANR')) { |
|
2331
|
|
|
define('PR_ANR', 0x360C001E); |
|
2332
|
|
|
} |
|
2333
|
|
|
if (!defined('PR_ANR_A')) { |
|
2334
|
|
|
define('PR_ANR_A', 0x360C001E); |
|
2335
|
|
|
} |
|
2336
|
|
|
if (!defined('PR_CONTENTS_SORT_ORDER')) { |
|
2337
|
|
|
define('PR_CONTENTS_SORT_ORDER', 0x360D1003); |
|
2338
|
|
|
} |
|
2339
|
|
|
if (!defined('PR_CONTAINER_HIERARCHY')) { |
|
2340
|
|
|
define('PR_CONTAINER_HIERARCHY', 0x360E000D); |
|
2341
|
|
|
} |
|
2342
|
|
|
if (!defined('PR_CONTAINER_CONTENTS')) { |
|
2343
|
|
|
define('PR_CONTAINER_CONTENTS', 0x360F000D); |
|
2344
|
|
|
} |
|
2345
|
|
|
if (!defined('PR_FOLDER_ASSOCIATED_CONTENTS')) { |
|
2346
|
|
|
define('PR_FOLDER_ASSOCIATED_CONTENTS', 0x3610000D); |
|
2347
|
|
|
} |
|
2348
|
|
|
if (!defined('PR_DEF_CREATE_DL')) { |
|
2349
|
|
|
define('PR_DEF_CREATE_DL', 0x36110102); |
|
2350
|
|
|
} |
|
2351
|
|
|
if (!defined('PR_DEF_CREATE_MAILUSER')) { |
|
2352
|
|
|
define('PR_DEF_CREATE_MAILUSER', 0x36120102); |
|
2353
|
|
|
} |
|
2354
|
|
|
if (!defined('PR_CONTAINER_CLASS')) { |
|
2355
|
|
|
define('PR_CONTAINER_CLASS', 0x3613001E); |
|
2356
|
|
|
} |
|
2357
|
|
|
if (!defined('PR_CONTAINER_MODIFY_VERSION')) { |
|
2358
|
|
|
define('PR_CONTAINER_MODIFY_VERSION', 0x36140014); |
|
2359
|
|
|
} |
|
2360
|
|
|
if (!defined('PR_AB_PROVIDER_ID')) { |
|
2361
|
|
|
define('PR_AB_PROVIDER_ID', 0x36150102); |
|
2362
|
|
|
} |
|
2363
|
|
|
if (!defined('PR_DEFAULT_VIEW_ENTRYID')) { |
|
2364
|
|
|
define('PR_DEFAULT_VIEW_ENTRYID', 0x36160102); |
|
2365
|
|
|
} |
|
2366
|
|
|
if (!defined('PR_ASSOC_CONTENT_COUNT')) { |
|
2367
|
|
|
define('PR_ASSOC_CONTENT_COUNT', 0x36170003); |
|
2368
|
|
|
} |
|
2369
|
|
|
if (!defined('PR_IPM_APPOINTMENT_ENTRYID')) { |
|
2370
|
|
|
define('PR_IPM_APPOINTMENT_ENTRYID', 0x36D00102); |
|
2371
|
|
|
} |
|
2372
|
|
|
if (!defined('PR_IPM_CONTACT_ENTRYID')) { |
|
2373
|
|
|
define('PR_IPM_CONTACT_ENTRYID', 0x36D10102); |
|
2374
|
|
|
} |
|
2375
|
|
|
if (!defined('PR_IPM_JOURNAL_ENTRYID')) { |
|
2376
|
|
|
define('PR_IPM_JOURNAL_ENTRYID', 0x36D20102); |
|
2377
|
|
|
} |
|
2378
|
|
|
if (!defined('PR_IPM_NOTE_ENTRYID')) { |
|
2379
|
|
|
define('PR_IPM_NOTE_ENTRYID', 0x36D30102); |
|
2380
|
|
|
} |
|
2381
|
|
|
if (!defined('PR_IPM_TASK_ENTRYID')) { |
|
2382
|
|
|
define('PR_IPM_TASK_ENTRYID', 0x36D40102); |
|
2383
|
|
|
} |
|
2384
|
|
|
if (!defined('PR_REM_ONLINE_ENTRYID')) { |
|
2385
|
|
|
define('PR_REM_ONLINE_ENTRYID', 0x36D50102); |
|
2386
|
|
|
} |
|
2387
|
|
|
if (!defined('PR_REM_OFFLINE_ENTRYID')) { |
|
2388
|
|
|
define('PR_REM_OFFLINE_ENTRYID', 0x36D60102); |
|
2389
|
|
|
} |
|
2390
|
|
|
if (!defined('PR_IPM_DRAFTS_ENTRYID')) { |
|
2391
|
|
|
define('PR_IPM_DRAFTS_ENTRYID', 0x36D70102); |
|
2392
|
|
|
} |
|
2393
|
|
|
if (!defined('PR_ADDITIONAL_REN_ENTRYIDS')) { |
|
2394
|
|
|
define('PR_ADDITIONAL_REN_ENTRYIDS', 0x36D81102); |
|
2395
|
|
|
} |
|
2396
|
|
|
if (!defined('PR_ADDITIONAL_REN_ENTRYIDS_EX')) { |
|
2397
|
|
|
define('PR_ADDITIONAL_REN_ENTRYIDS_EX', 0x36D90102); |
|
2398
|
|
|
} |
|
2399
|
|
|
if (!defined('PR_EXTENDED_FOLDER_FLAGS')) { |
|
2400
|
|
|
define('PR_EXTENDED_FOLDER_FLAGS', 0x36DA0102); |
|
2401
|
|
|
} |
|
2402
|
|
|
if (!defined('PR_NET_FOLDER_FLAGS')) { |
|
2403
|
|
|
define('PR_NET_FOLDER_FLAGS', 0x36DE0003); |
|
2404
|
|
|
} |
|
2405
|
|
|
if (!defined('PR_FOLDER_WEBVIEWINFO')) { |
|
2406
|
|
|
define('PR_FOLDER_WEBVIEWINFO', 0x36DF0102); |
|
2407
|
|
|
} |
|
2408
|
|
|
if (!defined('PR_FOLDER_XVIEWINFO_E')) { |
|
2409
|
|
|
define('PR_FOLDER_XVIEWINFO_E', 0x36E00102); |
|
2410
|
|
|
} |
|
2411
|
|
|
if (!defined('PR_FOLDER_VIEWS_ONLY')) { |
|
2412
|
|
|
define('PR_FOLDER_VIEWS_ONLY', 0x36E10003); |
|
2413
|
|
|
} |
|
2414
|
|
|
if (!defined('PR_ORDINAL_MOST')) { |
|
2415
|
|
|
define('PR_ORDINAL_MOST', 0x36E20003); |
|
2416
|
|
|
} |
|
2417
|
|
|
if (!defined('PR_FREEBUSY_ENTRYIDS')) { |
|
2418
|
|
|
define('PR_FREEBUSY_ENTRYIDS', 0x36E41102); |
|
2419
|
|
|
} |
|
2420
|
|
|
if (!defined('PR_DEF_POST_MSGCLASS')) { |
|
2421
|
|
|
define('PR_DEF_POST_MSGCLASS', 0x36E5001E); |
|
2422
|
|
|
} |
|
2423
|
|
|
if (!defined('PR_DEF_POST_DISPLAYNAME')) { |
|
2424
|
|
|
define('PR_DEF_POST_DISPLAYNAME', 0x36E6001E); |
|
2425
|
|
|
} |
|
2426
|
|
|
if (!defined('PR_GENERATE_EXCHANGE_VIEWS')) { |
|
2427
|
|
|
define('PR_GENERATE_EXCHANGE_VIEWS', 0x36E9000B); |
|
2428
|
|
|
} |
|
2429
|
|
|
if (!defined('PR_ATTACHMENT_X400_PARAMETERS')) { |
|
2430
|
|
|
define('PR_ATTACHMENT_X400_PARAMETERS', 0x37000102); |
|
2431
|
|
|
} |
|
2432
|
|
|
if (!defined('PR_ATTACH_DATA_BIN')) { |
|
2433
|
|
|
define('PR_ATTACH_DATA_BIN', 0x37010102); |
|
2434
|
|
|
} |
|
2435
|
|
|
if (!defined('PR_ATTACH_DATA_OBJ')) { |
|
2436
|
|
|
define('PR_ATTACH_DATA_OBJ', 0x3701000D); |
|
2437
|
|
|
} |
|
2438
|
|
|
if (!defined('PR_ATTACH_ENCODING')) { |
|
2439
|
|
|
define('PR_ATTACH_ENCODING', 0x37020102); |
|
2440
|
|
|
} |
|
2441
|
|
|
if (!defined('PR_ATTACH_EXTENSION')) { |
|
2442
|
|
|
define('PR_ATTACH_EXTENSION', 0x3703001E); |
|
2443
|
|
|
} |
|
2444
|
|
|
if (!defined('PR_ATTACH_EXTENSION_A')) { |
|
2445
|
|
|
define('PR_ATTACH_EXTENSION_A', 0x3703001E); |
|
2446
|
|
|
} |
|
2447
|
|
|
if (!defined('PR_ATTACH_FILENAME')) { |
|
2448
|
|
|
define('PR_ATTACH_FILENAME', 0x3704001E); |
|
2449
|
|
|
} |
|
2450
|
|
|
if (!defined('PR_ATTACH_FILENAME_A')) { |
|
2451
|
|
|
define('PR_ATTACH_FILENAME_A', 0x3704001E); |
|
2452
|
|
|
} |
|
2453
|
|
|
if (!defined('PR_ATTACH_METHOD')) { |
|
2454
|
|
|
define('PR_ATTACH_METHOD', 0x37050003); |
|
2455
|
|
|
} |
|
2456
|
|
|
if (!defined('PR_ATTACH_LONG_FILENAME')) { |
|
2457
|
|
|
define('PR_ATTACH_LONG_FILENAME', 0x3707001E); |
|
2458
|
|
|
} |
|
2459
|
|
|
if (!defined('PR_ATTACH_LONG_FILENAME_A')) { |
|
2460
|
|
|
define('PR_ATTACH_LONG_FILENAME_A', 0x3707001E); |
|
2461
|
|
|
} |
|
2462
|
|
|
if (!defined('PR_ATTACH_PATHNAME')) { |
|
2463
|
|
|
define('PR_ATTACH_PATHNAME', 0x3708001E); |
|
2464
|
|
|
} |
|
2465
|
|
|
if (!defined('PR_ATTACH_RENDERING')) { |
|
2466
|
|
|
define('PR_ATTACH_RENDERING', 0x37090102); |
|
2467
|
|
|
} |
|
2468
|
|
|
if (!defined('PR_ATTACH_TAG')) { |
|
2469
|
|
|
define('PR_ATTACH_TAG', 0x370A0102); |
|
2470
|
|
|
} |
|
2471
|
|
|
if (!defined('PR_RENDERING_POSITION')) { |
|
2472
|
|
|
define('PR_RENDERING_POSITION', 0x370B0003); |
|
2473
|
|
|
} |
|
2474
|
|
|
if (!defined('PR_ATTACH_TRANSPORT_NAME_A')) { |
|
2475
|
|
|
define('PR_ATTACH_TRANSPORT_NAME_A', 0x370C001E); |
|
2476
|
|
|
} |
|
2477
|
|
|
if (!defined('PR_ATTACH_TRANSPORT_NAME')) { |
|
2478
|
|
|
define('PR_ATTACH_TRANSPORT_NAME', 0x370C001E); |
|
2479
|
|
|
} |
|
2480
|
|
|
if (!defined('PR_ATTACH_LONG_PATHNAME')) { |
|
2481
|
|
|
define('PR_ATTACH_LONG_PATHNAME', 0x370D001E); |
|
2482
|
|
|
} |
|
2483
|
|
|
if (!defined('PR_ATTACH_MIME_TAG')) { |
|
2484
|
|
|
define('PR_ATTACH_MIME_TAG', 0x370E001E); |
|
2485
|
|
|
} |
|
2486
|
|
|
if (!defined('PR_ATTACH_ADDITIONAL_INFO')) { |
|
2487
|
|
|
define('PR_ATTACH_ADDITIONAL_INFO', 0x370F0102); |
|
2488
|
|
|
} |
|
2489
|
|
|
if (!defined('PR_ATTACH_CONTENT_BASE')) { |
|
2490
|
|
|
define('PR_ATTACH_CONTENT_BASE', 0x3711001E); |
|
2491
|
|
|
} |
|
2492
|
|
|
if (!defined('PR_ATTACH_CONTENT_BASE_A')) { |
|
2493
|
|
|
define('PR_ATTACH_CONTENT_BASE_A', 0x3711001E); |
|
2494
|
|
|
} |
|
2495
|
|
|
if (!defined('PR_ATTACH_CONTENT_ID')) { |
|
2496
|
|
|
define('PR_ATTACH_CONTENT_ID', 0x3712001E); |
|
2497
|
|
|
} |
|
2498
|
|
|
if (!defined('PR_ATTACH_CONTENT_ID_A')) { |
|
2499
|
|
|
define('PR_ATTACH_CONTENT_ID_A', 0x3712001E); |
|
2500
|
|
|
} |
|
2501
|
|
|
if (!defined('PR_ATTACH_CONTENT_LOCATION')) { |
|
2502
|
|
|
define('PR_ATTACH_CONTENT_LOCATION', 0x3713001E); |
|
2503
|
|
|
} |
|
2504
|
|
|
if (!defined('PR_ATTACH_CONTENT_LOCATION_A')) { |
|
2505
|
|
|
define('PR_ATTACH_CONTENT_LOCATION_A', 0x3713001E); |
|
2506
|
|
|
} |
|
2507
|
|
|
if (!defined('PR_ATTACH_FLAGS')) { |
|
2508
|
|
|
define('PR_ATTACH_FLAGS', 0x37140003); |
|
2509
|
|
|
} |
|
2510
|
|
|
if (!defined('PR_ATTACH_PAYLOAD_PROV_GUID_STR')) { |
|
2511
|
|
|
define('PR_ATTACH_PAYLOAD_PROV_GUID_STR', 0x3719001E); |
|
2512
|
|
|
} |
|
2513
|
|
|
if (!defined('PR_ATTACH_PAYLOAD_CLASS')) { |
|
2514
|
|
|
define('PR_ATTACH_PAYLOAD_CLASS', 0x371A001E); |
|
2515
|
|
|
} |
|
2516
|
|
|
if (!defined('PR_ATTACH_PAYLOAD_CLASS_A')) { |
|
2517
|
|
|
define('PR_ATTACH_PAYLOAD_CLASS_A', 0x371A001E); |
|
2518
|
|
|
} |
|
2519
|
|
|
if (!defined('PR_DISPLAY_TYPE')) { |
|
2520
|
|
|
define('PR_DISPLAY_TYPE', 0x39000003); |
|
2521
|
|
|
} |
|
2522
|
|
|
if (!defined('PR_TEMPLATEID')) { |
|
2523
|
|
|
define('PR_TEMPLATEID', 0x39020102); |
|
2524
|
|
|
} |
|
2525
|
|
|
if (!defined('PR_PRIMARY_CAPABILITY')) { |
|
2526
|
|
|
define('PR_PRIMARY_CAPABILITY', 0x39040102); |
|
2527
|
|
|
} |
|
2528
|
|
|
if (!defined('PR_DISPLAY_TYPE_EX')) { |
|
2529
|
|
|
define('PR_DISPLAY_TYPE_EX', 0x39050003); |
|
2530
|
|
|
} |
|
2531
|
|
|
if (!defined('PR_SMTP_ADDRESS')) { |
|
2532
|
|
|
define('PR_SMTP_ADDRESS', 0x39FE001E); |
|
2533
|
|
|
} |
|
2534
|
|
|
if (!defined('PR_SMTP_ADDRESS_A')) { |
|
2535
|
|
|
define('PR_SMTP_ADDRESS_A', 0x39FE001E); |
|
2536
|
|
|
} |
|
2537
|
|
|
if (!defined('PR_EMS_AB_DISPLAY_NAME_PRINTABLE')) { |
|
2538
|
|
|
define('PR_EMS_AB_DISPLAY_NAME_PRINTABLE', 0x39FF001E); |
|
2539
|
|
|
} |
|
2540
|
|
|
if (!defined('PR_EMS_AB_DISPLAY_NAME_PRINTABLE_A')) { |
|
2541
|
|
|
define('PR_EMS_AB_DISPLAY_NAME_PRINTABLE_A', 0x39FF001E); |
|
2542
|
|
|
} |
|
2543
|
|
|
if (!defined('PR_7BIT_DISPLAY_NAME')) { |
|
2544
|
|
|
define('PR_7BIT_DISPLAY_NAME', 0x39FF001E); |
|
2545
|
|
|
} |
|
2546
|
|
|
if (!defined('PR_ACCOUNT')) { |
|
2547
|
|
|
define('PR_ACCOUNT', 0x3A00001E); |
|
2548
|
|
|
} |
|
2549
|
|
|
if (!defined('PR_ACCOUNT_A')) { |
|
2550
|
|
|
define('PR_ACCOUNT_A', 0x3A00001E); |
|
2551
|
|
|
} |
|
2552
|
|
|
if (!defined('PR_ALTERNATE_RECIPIENT')) { |
|
2553
|
|
|
define('PR_ALTERNATE_RECIPIENT', 0x3A010102); |
|
2554
|
|
|
} |
|
2555
|
|
|
if (!defined('PR_CALLBACK_TELEPHONE_NUMBER')) { |
|
2556
|
|
|
define('PR_CALLBACK_TELEPHONE_NUMBER', 0x3A02001E); |
|
2557
|
|
|
} |
|
2558
|
|
|
if (!defined('PR_CONVERSION_PROHIBITED')) { |
|
2559
|
|
|
define('PR_CONVERSION_PROHIBITED', 0x3A03000B); |
|
2560
|
|
|
} |
|
2561
|
|
|
if (!defined('PR_DISCLOSE_RECIPIENTS')) { |
|
2562
|
|
|
define('PR_DISCLOSE_RECIPIENTS', 0x3A04000B); |
|
2563
|
|
|
} |
|
2564
|
|
|
if (!defined('PR_GENERATION')) { |
|
2565
|
|
|
define('PR_GENERATION', 0x3A05001E); |
|
2566
|
|
|
} |
|
2567
|
|
|
if (!defined('PR_GIVEN_NAME')) { |
|
2568
|
|
|
define('PR_GIVEN_NAME', 0x3A06001E); |
|
2569
|
|
|
} |
|
2570
|
|
|
if (!defined('PR_GOVERNMENT_ID_NUMBER')) { |
|
2571
|
|
|
define('PR_GOVERNMENT_ID_NUMBER', 0x3A07001E); |
|
2572
|
|
|
} |
|
2573
|
|
|
if (!defined('PR_BUSINESS_TELEPHONE_NUMBER')) { |
|
2574
|
|
|
define('PR_BUSINESS_TELEPHONE_NUMBER', 0x3A08001E); |
|
2575
|
|
|
} |
|
2576
|
|
|
if (!defined('PR_OFFICE_TELEPHONE_NUMBER')) { |
|
2577
|
|
|
define('PR_OFFICE_TELEPHONE_NUMBER', 0x3A08001E); |
|
2578
|
|
|
} |
|
2579
|
|
|
if (!defined('PR_HOME_TELEPHONE_NUMBER')) { |
|
2580
|
|
|
define('PR_HOME_TELEPHONE_NUMBER', 0x3A09001E); |
|
2581
|
|
|
} |
|
2582
|
|
|
if (!defined('PR_INITIALS')) { |
|
2583
|
|
|
define('PR_INITIALS', 0x3A0A001E); |
|
2584
|
|
|
} |
|
2585
|
|
|
if (!defined('PR_KEYWORD')) { |
|
2586
|
|
|
define('PR_KEYWORD', 0x3A0B001E); |
|
2587
|
|
|
} |
|
2588
|
|
|
if (!defined('PR_LANGUAGE')) { |
|
2589
|
|
|
define('PR_LANGUAGE', 0x3A0C001E); |
|
2590
|
|
|
} |
|
2591
|
|
|
if (!defined('PR_LOCATION')) { |
|
2592
|
|
|
define('PR_LOCATION', 0x3A0D001E); |
|
2593
|
|
|
} |
|
2594
|
|
|
if (!defined('PR_MAIL_PERMISSION')) { |
|
2595
|
|
|
define('PR_MAIL_PERMISSION', 0x3A0E000B); |
|
2596
|
|
|
} |
|
2597
|
|
|
if (!defined('PR_MHS_COMMON_NAME')) { |
|
2598
|
|
|
define('PR_MHS_COMMON_NAME', 0x3A0F001E); |
|
2599
|
|
|
} |
|
2600
|
|
|
if (!defined('PR_ORGANIZATIONAL_ID_NUMBER')) { |
|
2601
|
|
|
define('PR_ORGANIZATIONAL_ID_NUMBER', 0x3A10001E); |
|
2602
|
|
|
} |
|
2603
|
|
|
if (!defined('PR_SURNAME')) { |
|
2604
|
|
|
define('PR_SURNAME', 0x3A11001E); |
|
2605
|
|
|
} |
|
2606
|
|
|
if (!defined('PR_ORIGINAL_ENTRYID')) { |
|
2607
|
|
|
define('PR_ORIGINAL_ENTRYID', 0x3A120102); |
|
2608
|
|
|
} |
|
2609
|
|
|
if (!defined('PR_ORIGINAL_DISPLAY_NAME')) { |
|
2610
|
|
|
define('PR_ORIGINAL_DISPLAY_NAME', 0x3A13001E); |
|
2611
|
|
|
} |
|
2612
|
|
|
if (!defined('PR_ORIGINAL_SEARCH_KEY')) { |
|
2613
|
|
|
define('PR_ORIGINAL_SEARCH_KEY', 0x3A140102); |
|
2614
|
|
|
} |
|
2615
|
|
|
if (!defined('PR_POSTAL_ADDRESS')) { |
|
2616
|
|
|
define('PR_POSTAL_ADDRESS', 0x3A15001E); |
|
2617
|
|
|
} |
|
2618
|
|
|
if (!defined('PR_COMPANY_NAME')) { |
|
2619
|
|
|
define('PR_COMPANY_NAME', 0x3A16001E); |
|
2620
|
|
|
} |
|
2621
|
|
|
if (!defined('PR_COMPANY_NAME_A')) { |
|
2622
|
|
|
define('PR_COMPANY_NAME_A', 0x3A16001E); |
|
2623
|
|
|
} |
|
2624
|
|
|
if (!defined('PR_TITLE')) { |
|
2625
|
|
|
define('PR_TITLE', 0x3A17001E); |
|
2626
|
|
|
} |
|
2627
|
|
|
if (!defined('PR_DEPARTMENT_NAME')) { |
|
2628
|
|
|
define('PR_DEPARTMENT_NAME', 0x3A18001E); |
|
2629
|
|
|
} |
|
2630
|
|
|
if (!defined('PR_DEPARTMENT_NAME_A')) { |
|
2631
|
|
|
define('PR_DEPARTMENT_NAME_A', 0x3A18001E); |
|
2632
|
|
|
} |
|
2633
|
|
|
if (!defined('PR_OFFICE_LOCATION')) { |
|
2634
|
|
|
define('PR_OFFICE_LOCATION', 0x3A19001E); |
|
2635
|
|
|
} |
|
2636
|
|
|
if (!defined('PR_OFFICE_LOCATION_A')) { |
|
2637
|
|
|
define('PR_OFFICE_LOCATION_A', 0x3A19001E); |
|
2638
|
|
|
} |
|
2639
|
|
|
if (!defined('PR_PRIMARY_TELEPHONE_NUMBER')) { |
|
2640
|
|
|
define('PR_PRIMARY_TELEPHONE_NUMBER', 0x3A1A001E); |
|
2641
|
|
|
} |
|
2642
|
|
|
if (!defined('PR_PRIMARY_TELEPHONE_NUMBER_A')) { |
|
2643
|
|
|
define('PR_PRIMARY_TELEPHONE_NUMBER_A', 0x3A1A001E); |
|
2644
|
|
|
} |
|
2645
|
|
|
if (!defined('PR_BUSINESS2_TELEPHONE_NUMBER')) { |
|
2646
|
|
|
define('PR_BUSINESS2_TELEPHONE_NUMBER', 0x3A1B001E); |
|
2647
|
|
|
} |
|
2648
|
|
|
if (!defined('PR_BUSINESS2_TELEPHONE_NUMBER_MV')) { |
|
2649
|
|
|
define('PR_BUSINESS2_TELEPHONE_NUMBER_MV', 0x3A1B101E); |
|
2650
|
|
|
} |
|
2651
|
|
|
if (!defined('PR_OFFICE2_TELEPHONE_NUMBER')) { |
|
2652
|
|
|
define('PR_OFFICE2_TELEPHONE_NUMBER', 0x3A1B001E); |
|
2653
|
|
|
} |
|
2654
|
|
|
if (!defined('PR_MOBILE_TELEPHONE_NUMBER')) { |
|
2655
|
|
|
define('PR_MOBILE_TELEPHONE_NUMBER', 0x3A1C001E); |
|
2656
|
|
|
} |
|
2657
|
|
|
if (!defined('PR_CELLULAR_TELEPHONE_NUMBER')) { |
|
2658
|
|
|
define('PR_CELLULAR_TELEPHONE_NUMBER', 0x3A1C001E); |
|
2659
|
|
|
} |
|
2660
|
|
|
if (!defined('PR_RADIO_TELEPHONE_NUMBER')) { |
|
2661
|
|
|
define('PR_RADIO_TELEPHONE_NUMBER', 0x3A1D001E); |
|
2662
|
|
|
} |
|
2663
|
|
|
if (!defined('PR_CAR_TELEPHONE_NUMBER')) { |
|
2664
|
|
|
define('PR_CAR_TELEPHONE_NUMBER', 0x3A1E001E); |
|
2665
|
|
|
} |
|
2666
|
|
|
if (!defined('PR_OTHER_TELEPHONE_NUMBER')) { |
|
2667
|
|
|
define('PR_OTHER_TELEPHONE_NUMBER', 0x3A1F001E); |
|
2668
|
|
|
} |
|
2669
|
|
|
if (!defined('PR_TRANSMITABLE_DISPLAY_NAME')) { |
|
2670
|
|
|
define('PR_TRANSMITABLE_DISPLAY_NAME', 0x3A20001E); |
|
2671
|
|
|
} |
|
2672
|
|
|
if (!defined('PR_TRANSMITABLE_DISPLAY_NAME_A')) { |
|
2673
|
|
|
define('PR_TRANSMITABLE_DISPLAY_NAME_A', 0x3A20001E); |
|
2674
|
|
|
} |
|
2675
|
|
|
if (!defined('PR_BEEPER_TELEPHONE_NUMBER')) { |
|
2676
|
|
|
define('PR_BEEPER_TELEPHONE_NUMBER', 0x3A21001E); |
|
2677
|
|
|
} |
|
2678
|
|
|
if (!defined('PR_PAGER_TELEPHONE_NUMBER')) { |
|
2679
|
|
|
define('PR_PAGER_TELEPHONE_NUMBER', 0x3A21001E); |
|
2680
|
|
|
} |
|
2681
|
|
|
if (!defined('PR_USER_CERTIFICATE')) { |
|
2682
|
|
|
define('PR_USER_CERTIFICATE', 0x3A220102); |
|
2683
|
|
|
} |
|
2684
|
|
|
if (!defined('PR_PRIMARY_FAX_NUMBER')) { |
|
2685
|
|
|
define('PR_PRIMARY_FAX_NUMBER', 0x3A23001E); |
|
2686
|
|
|
} |
|
2687
|
|
|
if (!defined('PR_BUSINESS_FAX_NUMBER')) { |
|
2688
|
|
|
define('PR_BUSINESS_FAX_NUMBER', 0x3A24001E); |
|
2689
|
|
|
} |
|
2690
|
|
|
if (!defined('PR_HOME_FAX_NUMBER')) { |
|
2691
|
|
|
define('PR_HOME_FAX_NUMBER', 0x3A25001E); |
|
2692
|
|
|
} |
|
2693
|
|
|
if (!defined('PR_COUNTRY')) { |
|
2694
|
|
|
define('PR_COUNTRY', 0x3A26001E); |
|
2695
|
|
|
} |
|
2696
|
|
|
if (!defined('PR_BUSINESS_ADDRESS_COUNTRY')) { |
|
2697
|
|
|
define('PR_BUSINESS_ADDRESS_COUNTRY', 0x3A26001E); |
|
2698
|
|
|
} |
|
2699
|
|
|
if (!defined('PR_LOCALITY')) { |
|
2700
|
|
|
define('PR_LOCALITY', 0x3A27001E); |
|
2701
|
|
|
} |
|
2702
|
|
|
if (!defined('PR_BUSINESS_ADDRESS_CITY')) { |
|
2703
|
|
|
define('PR_BUSINESS_ADDRESS_CITY', 0x3A27001E); |
|
2704
|
|
|
} |
|
2705
|
|
|
if (!defined('PR_STATE_OR_PROVINCE')) { |
|
2706
|
|
|
define('PR_STATE_OR_PROVINCE', 0x3A28001E); |
|
2707
|
|
|
} |
|
2708
|
|
|
if (!defined('PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE')) { |
|
2709
|
|
|
define('PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE', 0x3A28001E); |
|
2710
|
|
|
} |
|
2711
|
|
|
if (!defined('PR_STREET_ADDRESS')) { |
|
2712
|
|
|
define('PR_STREET_ADDRESS', 0x3A29001E); |
|
2713
|
|
|
} |
|
2714
|
|
|
if (!defined('PR_BUSINESS_ADDRESS_STREET')) { |
|
2715
|
|
|
define('PR_BUSINESS_ADDRESS_STREET', 0x3A29001E); |
|
2716
|
|
|
} |
|
2717
|
|
|
if (!defined('PR_POSTAL_CODE')) { |
|
2718
|
|
|
define('PR_POSTAL_CODE', 0x3A2A001E); |
|
2719
|
|
|
} |
|
2720
|
|
|
if (!defined('PR_BUSINESS_ADDRESS_POSTAL_CODE')) { |
|
2721
|
|
|
define('PR_BUSINESS_ADDRESS_POSTAL_CODE', 0x3A2A001E); |
|
2722
|
|
|
} |
|
2723
|
|
|
if (!defined('PR_POST_OFFICE_BOX')) { |
|
2724
|
|
|
define('PR_POST_OFFICE_BOX', 0x3A2B001E); |
|
2725
|
|
|
} |
|
2726
|
|
|
if (!defined('PR_BUSINESS_ADDRESS_POST_OFFICE_BOX')) { |
|
2727
|
|
|
define('PR_BUSINESS_ADDRESS_POST_OFFICE_BOX', 0x3A2B001E); |
|
2728
|
|
|
} |
|
2729
|
|
|
if (!defined('PR_TELEX_NUMBER')) { |
|
2730
|
|
|
define('PR_TELEX_NUMBER', 0x3A2C001E); |
|
2731
|
|
|
} |
|
2732
|
|
|
if (!defined('PR_ISDN_NUMBER')) { |
|
2733
|
|
|
define('PR_ISDN_NUMBER', 0x3A2D001E); |
|
2734
|
|
|
} |
|
2735
|
|
|
if (!defined('PR_ASSISTANT_TELEPHONE_NUMBER')) { |
|
2736
|
|
|
define('PR_ASSISTANT_TELEPHONE_NUMBER', 0x3A2E001E); |
|
2737
|
|
|
} |
|
2738
|
|
|
if (!defined('PR_HOME2_TELEPHONE_NUMBER')) { |
|
2739
|
|
|
define('PR_HOME2_TELEPHONE_NUMBER', 0x3A2F001E); |
|
2740
|
|
|
} |
|
2741
|
|
|
if (!defined('PR_HOME2_TELEPHONE_NUMBER_MV')) { |
|
2742
|
|
|
define('PR_HOME2_TELEPHONE_NUMBER_MV', 0x3A2F101E); |
|
2743
|
|
|
} |
|
2744
|
|
|
if (!defined('PR_ASSISTANT')) { |
|
2745
|
|
|
define('PR_ASSISTANT', 0x3A30001E); |
|
2746
|
|
|
} |
|
2747
|
|
|
if (!defined('PR_SEND_RICH_INFO')) { |
|
2748
|
|
|
define('PR_SEND_RICH_INFO', 0x3A40000B); |
|
2749
|
|
|
} |
|
2750
|
|
|
if (!defined('PR_WEDDING_ANNIVERSARY')) { |
|
2751
|
|
|
define('PR_WEDDING_ANNIVERSARY', 0x3A410040); |
|
2752
|
|
|
} |
|
2753
|
|
|
if (!defined('PR_BIRTHDAY')) { |
|
2754
|
|
|
define('PR_BIRTHDAY', 0x3A420040); |
|
2755
|
|
|
} |
|
2756
|
|
|
if (!defined('PR_HOBBIES')) { |
|
2757
|
|
|
define('PR_HOBBIES', 0x3A43001E); |
|
2758
|
|
|
} |
|
2759
|
|
|
if (!defined('PR_MIDDLE_NAME')) { |
|
2760
|
|
|
define('PR_MIDDLE_NAME', 0x3A44001E); |
|
2761
|
|
|
} |
|
2762
|
|
|
if (!defined('PR_DISPLAY_NAME_PREFIX')) { |
|
2763
|
|
|
define('PR_DISPLAY_NAME_PREFIX', 0x3A45001E); |
|
2764
|
|
|
} |
|
2765
|
|
|
if (!defined('PR_PROFESSION')) { |
|
2766
|
|
|
define('PR_PROFESSION', 0x3A46001E); |
|
2767
|
|
|
} |
|
2768
|
|
|
if (!defined('PR_PREFERRED_BY_NAME')) { |
|
2769
|
|
|
define('PR_PREFERRED_BY_NAME', 0x3A47001E); |
|
2770
|
|
|
} |
|
2771
|
|
|
if (!defined('PR_SPOUSE_NAME')) { |
|
2772
|
|
|
define('PR_SPOUSE_NAME', 0x3A48001E); |
|
2773
|
|
|
} |
|
2774
|
|
|
if (!defined('PR_COMPUTER_NETWORK_NAME')) { |
|
2775
|
|
|
define('PR_COMPUTER_NETWORK_NAME', 0x3A49001E); |
|
2776
|
|
|
} |
|
2777
|
|
|
if (!defined('PR_CUSTOMER_ID')) { |
|
2778
|
|
|
define('PR_CUSTOMER_ID', 0x3A4A001E); |
|
2779
|
|
|
} |
|
2780
|
|
|
if (!defined('PR_TTYTDD_PHONE_NUMBER')) { |
|
2781
|
|
|
define('PR_TTYTDD_PHONE_NUMBER', 0x3A4B001E); |
|
2782
|
|
|
} |
|
2783
|
|
|
if (!defined('PR_FTP_SITE')) { |
|
2784
|
|
|
define('PR_FTP_SITE', 0x3A4C001E); |
|
2785
|
|
|
} |
|
2786
|
|
|
if (!defined('PR_GENDER')) { |
|
2787
|
|
|
define('PR_GENDER', 0x3A4D0002); |
|
2788
|
|
|
} |
|
2789
|
|
|
if (!defined('PR_MANAGER_NAME')) { |
|
2790
|
|
|
define('PR_MANAGER_NAME', 0x3A4E001E); |
|
2791
|
|
|
} |
|
2792
|
|
|
if (!defined('PR_NICKNAME')) { |
|
2793
|
|
|
define('PR_NICKNAME', 0x3A4F001E); |
|
2794
|
|
|
} |
|
2795
|
|
|
if (!defined('PR_PERSONAL_HOME_PAGE')) { |
|
2796
|
|
|
define('PR_PERSONAL_HOME_PAGE', 0x3A50001E); |
|
2797
|
|
|
} |
|
2798
|
|
|
if (!defined('PR_BUSINESS_HOME_PAGE')) { |
|
2799
|
|
|
define('PR_BUSINESS_HOME_PAGE', 0x3A51001E); |
|
2800
|
|
|
} |
|
2801
|
|
|
if (!defined('PR_CONTACT_VERSION')) { |
|
2802
|
|
|
define('PR_CONTACT_VERSION', 0x3A520048); |
|
2803
|
|
|
} |
|
2804
|
|
|
if (!defined('PR_CONTACT_ENTRYIDS')) { |
|
2805
|
|
|
define('PR_CONTACT_ENTRYIDS', 0x3A531102); |
|
2806
|
|
|
} |
|
2807
|
|
|
if (!defined('PR_CONTACT_ADDRTYPES')) { |
|
2808
|
|
|
define('PR_CONTACT_ADDRTYPES', 0x3A54101E); |
|
2809
|
|
|
} |
|
2810
|
|
|
if (!defined('PR_CONTACT_DEFAULT_ADDRESS_INDEX')) { |
|
2811
|
|
|
define('PR_CONTACT_DEFAULT_ADDRESS_INDEX', 0x3A550003); |
|
2812
|
|
|
} |
|
2813
|
|
|
if (!defined('PR_CONTACT_EMAIL_ADDRESSES')) { |
|
2814
|
|
|
define('PR_CONTACT_EMAIL_ADDRESSES', 0x3A56101E); |
|
2815
|
|
|
} |
|
2816
|
|
|
if (!defined('PR_COMPANY_MAIN_PHONE_NUMBER')) { |
|
2817
|
|
|
define('PR_COMPANY_MAIN_PHONE_NUMBER', 0x3A57001E); |
|
2818
|
|
|
} |
|
2819
|
|
|
if (!defined('PR_CHILDRENS_NAMES')) { |
|
2820
|
|
|
define('PR_CHILDRENS_NAMES', 0x3A58101E); |
|
2821
|
|
|
} |
|
2822
|
|
|
if (!defined('PR_HOME_ADDRESS_CITY')) { |
|
2823
|
|
|
define('PR_HOME_ADDRESS_CITY', 0x3A59001E); |
|
2824
|
|
|
} |
|
2825
|
|
|
if (!defined('PR_HOME_ADDRESS_COUNTRY')) { |
|
2826
|
|
|
define('PR_HOME_ADDRESS_COUNTRY', 0x3A5A001E); |
|
2827
|
|
|
} |
|
2828
|
|
|
if (!defined('PR_HOME_ADDRESS_POSTAL_CODE')) { |
|
2829
|
|
|
define('PR_HOME_ADDRESS_POSTAL_CODE', 0x3A5B001E); |
|
2830
|
|
|
} |
|
2831
|
|
|
if (!defined('PR_HOME_ADDRESS_STATE_OR_PROVINCE')) { |
|
2832
|
|
|
define('PR_HOME_ADDRESS_STATE_OR_PROVINCE', 0x3A5C001E); |
|
2833
|
|
|
} |
|
2834
|
|
|
if (!defined('PR_HOME_ADDRESS_STREET')) { |
|
2835
|
|
|
define('PR_HOME_ADDRESS_STREET', 0x3A5D001E); |
|
2836
|
|
|
} |
|
2837
|
|
|
if (!defined('PR_HOME_ADDRESS_POST_OFFICE_BOX')) { |
|
2838
|
|
|
define('PR_HOME_ADDRESS_POST_OFFICE_BOX', 0x3A5E001E); |
|
2839
|
|
|
} |
|
2840
|
|
|
if (!defined('PR_OTHER_ADDRESS_CITY')) { |
|
2841
|
|
|
define('PR_OTHER_ADDRESS_CITY', 0x3A5F001E); |
|
2842
|
|
|
} |
|
2843
|
|
|
if (!defined('PR_OTHER_ADDRESS_COUNTRY')) { |
|
2844
|
|
|
define('PR_OTHER_ADDRESS_COUNTRY', 0x3A60001E); |
|
2845
|
|
|
} |
|
2846
|
|
|
if (!defined('PR_OTHER_ADDRESS_POSTAL_CODE')) { |
|
2847
|
|
|
define('PR_OTHER_ADDRESS_POSTAL_CODE', 0x3A61001E); |
|
2848
|
|
|
} |
|
2849
|
|
|
if (!defined('PR_OTHER_ADDRESS_STATE_OR_PROVINCE')) { |
|
2850
|
|
|
define('PR_OTHER_ADDRESS_STATE_OR_PROVINCE', 0x3A62001E); |
|
2851
|
|
|
} |
|
2852
|
|
|
if (!defined('PR_OTHER_ADDRESS_STREET')) { |
|
2853
|
|
|
define('PR_OTHER_ADDRESS_STREET', 0x3A63001E); |
|
2854
|
|
|
} |
|
2855
|
|
|
if (!defined('PR_OTHER_ADDRESS_POST_OFFICE_BOX')) { |
|
2856
|
|
|
define('PR_OTHER_ADDRESS_POST_OFFICE_BOX', 0x3A64001E); |
|
2857
|
|
|
} |
|
2858
|
|
|
if (!defined('PR_USER_X509_CERTIFICATE')) { |
|
2859
|
|
|
define('PR_USER_X509_CERTIFICATE', 0x3A701102); |
|
2860
|
|
|
} |
|
2861
|
|
|
if (!defined('PR_SEND_INTERNET_ENCODING')) { |
|
2862
|
|
|
define('PR_SEND_INTERNET_ENCODING', 0x3A710003); |
|
2863
|
|
|
} |
|
2864
|
|
|
if (!defined('PR_STORE_PROVIDERS')) { |
|
2865
|
|
|
define('PR_STORE_PROVIDERS', 0x3D000102); |
|
2866
|
|
|
} |
|
2867
|
|
|
if (!defined('PR_AB_PROVIDERS')) { |
|
2868
|
|
|
define('PR_AB_PROVIDERS', 0x3D010102); |
|
2869
|
|
|
} |
|
2870
|
|
|
if (!defined('PR_TRANSPORT_PROVIDERS')) { |
|
2871
|
|
|
define('PR_TRANSPORT_PROVIDERS', 0x3D020102); |
|
2872
|
|
|
} |
|
2873
|
|
|
if (!defined('PR_DEFAULT_PROFILE')) { |
|
2874
|
|
|
define('PR_DEFAULT_PROFILE', 0x3D04000B); |
|
2875
|
|
|
} |
|
2876
|
|
|
if (!defined('PR_AB_SEARCH_PATH')) { |
|
2877
|
|
|
define('PR_AB_SEARCH_PATH', 0x3D051102); |
|
2878
|
|
|
} |
|
2879
|
|
|
if (!defined('PR_AB_DEFAULT_DIR')) { |
|
2880
|
|
|
define('PR_AB_DEFAULT_DIR', 0x3D060102); |
|
2881
|
|
|
} |
|
2882
|
|
|
if (!defined('PR_AB_DEFAULT_PAB')) { |
|
2883
|
|
|
define('PR_AB_DEFAULT_PAB', 0x3D070102); |
|
2884
|
|
|
} |
|
2885
|
|
|
if (!defined('PR_FILTERING_HOOKS')) { |
|
2886
|
|
|
define('PR_FILTERING_HOOKS', 0x3D080102); |
|
2887
|
|
|
} |
|
2888
|
|
|
if (!defined('PR_SERVICE_NAME')) { |
|
2889
|
|
|
define('PR_SERVICE_NAME', 0x3D09001E); |
|
2890
|
|
|
} |
|
2891
|
|
|
if (!defined('PR_SERVICE_DLL_NAME')) { |
|
2892
|
|
|
define('PR_SERVICE_DLL_NAME', 0x3D0A001E); |
|
2893
|
|
|
} |
|
2894
|
|
|
if (!defined('PR_SERVICE_ENTRY_NAME')) { |
|
2895
|
|
|
define('PR_SERVICE_ENTRY_NAME', 0x3D0B001E); |
|
2896
|
|
|
} |
|
2897
|
|
|
if (!defined('PR_SERVICE_UID')) { |
|
2898
|
|
|
define('PR_SERVICE_UID', 0x3D0C0102); |
|
2899
|
|
|
} |
|
2900
|
|
|
if (!defined('PR_SERVICE_EXTRA_UIDS')) { |
|
2901
|
|
|
define('PR_SERVICE_EXTRA_UIDS', 0x3D0D0102); |
|
2902
|
|
|
} |
|
2903
|
|
|
if (!defined('PR_SERVICES')) { |
|
2904
|
|
|
define('PR_SERVICES', 0x3D0E0102); |
|
2905
|
|
|
} |
|
2906
|
|
|
if (!defined('PR_SERVICE_SUPPORT_FILES')) { |
|
2907
|
|
|
define('PR_SERVICE_SUPPORT_FILES', 0x3D0F101E); |
|
2908
|
|
|
} |
|
2909
|
|
|
if (!defined('PR_SERVICE_DELETE_FILES')) { |
|
2910
|
|
|
define('PR_SERVICE_DELETE_FILES', 0x3D10101E); |
|
2911
|
|
|
} |
|
2912
|
|
|
if (!defined('PR_AB_SEARCH_PATH_UPDATE')) { |
|
2913
|
|
|
define('PR_AB_SEARCH_PATH_UPDATE', 0x3D110102); |
|
2914
|
|
|
} |
|
2915
|
|
|
if (!defined('PR_PROFILE_NAME')) { |
|
2916
|
|
|
define('PR_PROFILE_NAME', 0x3D12001E); |
|
2917
|
|
|
} |
|
2918
|
|
|
if (!defined('PR_EMSMDB_SECTION_UID')) { |
|
2919
|
|
|
define('PR_EMSMDB_SECTION_UID', 0x3D150102); |
|
2920
|
|
|
} |
|
2921
|
|
|
if (!defined('PR_EMSMDB_LEGACY')) { |
|
2922
|
|
|
define('PR_EMSMDB_LEGACY', 0x3D18000B); |
|
2923
|
|
|
} |
|
2924
|
|
|
if (!defined('PR_EMSABP_USER_UID')) { |
|
2925
|
|
|
define('PR_EMSABP_USER_UID', 0x3D1A0102); |
|
2926
|
|
|
} |
|
2927
|
|
|
if (!defined('PR_AB_CHOOSE_DIRECTORY_AUTOMATICALLY')) { |
|
2928
|
|
|
define('PR_AB_CHOOSE_DIRECTORY_AUTOMATICALLY', 0x3D1C000B); |
|
2929
|
|
|
} |
|
2930
|
|
|
if (!defined('PR_CORRELATION_ID')) { |
|
2931
|
|
|
define('PR_CORRELATION_ID', 0x3DD10048); |
|
2932
|
|
|
} |
|
2933
|
|
|
if (!defined('PR_IDENTITY_DISPLAY')) { |
|
2934
|
|
|
define('PR_IDENTITY_DISPLAY', 0x3E00001E); |
|
2935
|
|
|
} |
|
2936
|
|
|
if (!defined('PR_IDENTITY_ENTRYID')) { |
|
2937
|
|
|
define('PR_IDENTITY_ENTRYID', 0x3E010102); |
|
2938
|
|
|
} |
|
2939
|
|
|
if (!defined('PR_RESOURCE_METHODS')) { |
|
2940
|
|
|
define('PR_RESOURCE_METHODS', 0x3E020003); |
|
2941
|
|
|
} |
|
2942
|
|
|
if (!defined('PR_RESOURCE_TYPE')) { |
|
2943
|
|
|
define('PR_RESOURCE_TYPE', 0x3E030003); |
|
2944
|
|
|
} |
|
2945
|
|
|
if (!defined('PR_STATUS_CODE')) { |
|
2946
|
|
|
define('PR_STATUS_CODE', 0x3E040003); |
|
2947
|
|
|
} |
|
2948
|
|
|
if (!defined('PR_IDENTITY_SEARCH_KEY')) { |
|
2949
|
|
|
define('PR_IDENTITY_SEARCH_KEY', 0x3E050102); |
|
2950
|
|
|
} |
|
2951
|
|
|
if (!defined('PR_OWN_STORE_ENTRYID')) { |
|
2952
|
|
|
define('PR_OWN_STORE_ENTRYID', 0x3E060102); |
|
2953
|
|
|
} |
|
2954
|
|
|
if (!defined('PR_RESOURCE_PATH')) { |
|
2955
|
|
|
define('PR_RESOURCE_PATH', 0x3E07001E); |
|
2956
|
|
|
} |
|
2957
|
|
|
if (!defined('PR_STATUS_STRING')) { |
|
2958
|
|
|
define('PR_STATUS_STRING', 0x3E08001E); |
|
2959
|
|
|
} |
|
2960
|
|
|
if (!defined('PR_X400_DEFERRED_DELIVERY_CANCEL')) { |
|
2961
|
|
|
define('PR_X400_DEFERRED_DELIVERY_CANCEL', 0x3E09000B); |
|
2962
|
|
|
} |
|
2963
|
|
|
if (!defined('PR_HEADER_FOLDER_ENTRYID')) { |
|
2964
|
|
|
define('PR_HEADER_FOLDER_ENTRYID', 0x3E0A0102); |
|
2965
|
|
|
} |
|
2966
|
|
|
if (!defined('PR_REMOTE_PROGRESS')) { |
|
2967
|
|
|
define('PR_REMOTE_PROGRESS', 0x3E0B0003); |
|
2968
|
|
|
} |
|
2969
|
|
|
if (!defined('PR_REMOTE_PROGRESS_TEXT')) { |
|
2970
|
|
|
define('PR_REMOTE_PROGRESS_TEXT', 0x3E0C001E); |
|
2971
|
|
|
} |
|
2972
|
|
|
if (!defined('PR_REMOTE_VALIDATE_OK')) { |
|
2973
|
|
|
define('PR_REMOTE_VALIDATE_OK', 0x3E0D000B); |
|
2974
|
|
|
} |
|
2975
|
|
|
if (!defined('PR_CONTROL_FLAGS')) { |
|
2976
|
|
|
define('PR_CONTROL_FLAGS', 0x3F000003); |
|
2977
|
|
|
} |
|
2978
|
|
|
if (!defined('PR_CONTROL_STRUCTURE')) { |
|
2979
|
|
|
define('PR_CONTROL_STRUCTURE', 0x3F010102); |
|
2980
|
|
|
} |
|
2981
|
|
|
if (!defined('PR_CONTROL_TYPE')) { |
|
2982
|
|
|
define('PR_CONTROL_TYPE', 0x3F020003); |
|
2983
|
|
|
} |
|
2984
|
|
|
if (!defined('PR_DELTAX')) { |
|
2985
|
|
|
define('PR_DELTAX', 0x3F030003); |
|
2986
|
|
|
} |
|
2987
|
|
|
if (!defined('PR_DELTAY')) { |
|
2988
|
|
|
define('PR_DELTAY', 0x3F040003); |
|
2989
|
|
|
} |
|
2990
|
|
|
if (!defined('PR_XPOS')) { |
|
2991
|
|
|
define('PR_XPOS', 0x3F050003); |
|
2992
|
|
|
} |
|
2993
|
|
|
if (!defined('PR_YPOS')) { |
|
2994
|
|
|
define('PR_YPOS', 0x3F060003); |
|
2995
|
|
|
} |
|
2996
|
|
|
if (!defined('PR_CONTROL_ID')) { |
|
2997
|
|
|
define('PR_CONTROL_ID', 0x3F070102); |
|
2998
|
|
|
} |
|
2999
|
|
|
if (!defined('PR_INITIAL_DETAILS_PANE')) { |
|
3000
|
|
|
define('PR_INITIAL_DETAILS_PANE', 0x3F080003); |
|
3001
|
|
|
} |
|
3002
|
|
|
if (!defined('PR_PREVIEW_UNREAD')) { |
|
3003
|
|
|
define('PR_PREVIEW_UNREAD', 0x3FD8001E); |
|
3004
|
|
|
} |
|
3005
|
|
|
if (!defined('PR_PREVIEW')) { |
|
3006
|
|
|
define('PR_PREVIEW', 0x3FD9001E); |
|
3007
|
|
|
} |
|
3008
|
|
|
if (!defined('PR_INTERNET_CPID')) { |
|
3009
|
|
|
define('PR_INTERNET_CPID', 0x3FDE0003); |
|
3010
|
|
|
} |
|
3011
|
|
|
if (!defined('PR_AUTO_RESPONSE_SUPPRESS')) { |
|
3012
|
|
|
define('PR_AUTO_RESPONSE_SUPPRESS', 0x3FDF0003); |
|
3013
|
|
|
} |
|
3014
|
|
|
if (!defined('PR_ACL_DATA')) { |
|
3015
|
|
|
define('PR_ACL_DATA', 0x3FE00102); |
|
3016
|
|
|
} |
|
3017
|
|
|
if (!defined('PR_ACL_TABLE')) { |
|
3018
|
|
|
define('PR_ACL_TABLE', 0x3FE0000D); |
|
3019
|
|
|
} |
|
3020
|
|
|
if (!defined('PR_RULES_DATA')) { |
|
3021
|
|
|
define('PR_RULES_DATA', 0x3FE10102); |
|
3022
|
|
|
} |
|
3023
|
|
|
if (!defined('PR_RULES_TABLE')) { |
|
3024
|
|
|
define('PR_RULES_TABLE', 0x3FE1000D); |
|
3025
|
|
|
} |
|
3026
|
|
|
if (!defined('PR_DELEGATED_BY_RULE')) { |
|
3027
|
|
|
define('PR_DELEGATED_BY_RULE', 0x3FE3000B); |
|
3028
|
|
|
} |
|
3029
|
|
|
if (!defined('PR_RESOLVE_METHOD')) { |
|
3030
|
|
|
define('PR_RESOLVE_METHOD', 0x3FE70003); |
|
3031
|
|
|
} |
|
3032
|
|
|
if (!defined('PR_HAS_DAMS')) { |
|
3033
|
|
|
define('PR_HAS_DAMS', 0x3FEA000B); |
|
3034
|
|
|
} |
|
3035
|
|
|
if (!defined('PR_DEFERRED_SEND_NUMBER')) { |
|
3036
|
|
|
define('PR_DEFERRED_SEND_NUMBER', 0x3FEB0003); |
|
3037
|
|
|
} |
|
3038
|
|
|
if (!defined('PR_DEFERRED_SEND_UNITS')) { |
|
3039
|
|
|
define('PR_DEFERRED_SEND_UNITS', 0x3FEC0003); |
|
3040
|
|
|
} |
|
3041
|
|
|
if (!defined('PR_EXPIRY_NUMBER')) { |
|
3042
|
|
|
define('PR_EXPIRY_NUMBER', 0x3FED0003); |
|
3043
|
|
|
} |
|
3044
|
|
|
if (!defined('PR_EXPIRY_UNITS')) { |
|
3045
|
|
|
define('PR_EXPIRY_UNITS', 0x3FEE0003); |
|
3046
|
|
|
} |
|
3047
|
|
|
if (!defined('PR_DEFERRED_SEND_TIME')) { |
|
3048
|
|
|
define('PR_DEFERRED_SEND_TIME', 0x3FEF0040); |
|
3049
|
|
|
} |
|
3050
|
|
|
if (!defined('PR_CONFLICT_ENTRYID')) { |
|
3051
|
|
|
define('PR_CONFLICT_ENTRYID', 0x3FF00102); |
|
3052
|
|
|
} |
|
3053
|
|
|
if (!defined('PR_MESSAGE_LOCALE_ID')) { |
|
3054
|
|
|
define('PR_MESSAGE_LOCALE_ID', 0x3FF10003); |
|
3055
|
|
|
} |
|
3056
|
|
|
if (!defined('PR_STORAGE_QUOTA_LIMIT')) { |
|
3057
|
|
|
define('PR_STORAGE_QUOTA_LIMIT', 0x3FF50003); |
|
3058
|
|
|
} |
|
3059
|
|
|
if (!defined('PR_CREATOR_NAME')) { |
|
3060
|
|
|
define('PR_CREATOR_NAME', 0x3FF8001E); |
|
3061
|
|
|
} |
|
3062
|
|
|
if (!defined('PR_CREATOR_ENTRYID')) { |
|
3063
|
|
|
define('PR_CREATOR_ENTRYID', 0x3FF90102); |
|
3064
|
|
|
} |
|
3065
|
|
|
if (!defined('PR_LAST_MODIFIER_NAME')) { |
|
3066
|
|
|
define('PR_LAST_MODIFIER_NAME', 0x3FFA001E); |
|
3067
|
|
|
} |
|
3068
|
|
|
if (!defined('PR_LAST_MODIFIER_ENTRYID')) { |
|
3069
|
|
|
define('PR_LAST_MODIFIER_ENTRYID', 0x3FFB0102); |
|
3070
|
|
|
} |
|
3071
|
|
|
if (!defined('PR_MESSAGE_CODEPAGE')) { |
|
3072
|
|
|
define('PR_MESSAGE_CODEPAGE', 0x3FFD0003); |
|
3073
|
|
|
} |
|
3074
|
|
|
if (!defined('PR_SENT_REPRESENTING_FLAGS')) { |
|
3075
|
|
|
define('PR_SENT_REPRESENTING_FLAGS', 0x401A0003); |
|
3076
|
|
|
} |
|
3077
|
|
|
if (!defined('PR_CONTENT_FILTER_SCL')) { |
|
3078
|
|
|
define('PR_CONTENT_FILTER_SCL', 0x40760003); |
|
3079
|
|
|
} |
|
3080
|
|
|
if (!defined('PR_SENDER_ID_STATUS')) { |
|
3081
|
|
|
define('PR_SENDER_ID_STATUS', 0x40790003); |
|
3082
|
|
|
} |
|
3083
|
|
|
if (!defined('PR_HIER_REV')) { |
|
3084
|
|
|
define('PR_HIER_REV', 0x40820040); |
|
3085
|
|
|
} |
|
3086
|
|
|
if (!defined('PR_PURPORTED_SENDER_DOMAIN')) { |
|
3087
|
|
|
define('PR_PURPORTED_SENDER_DOMAIN', 0x4083001E); |
|
3088
|
|
|
} |
|
3089
|
|
|
if (!defined('PR_PURPORTED_SENDER_DOMAIN_A')) { |
|
3090
|
|
|
define('PR_PURPORTED_SENDER_DOMAIN_A', 0x4083001E); |
|
3091
|
|
|
} |
|
3092
|
|
|
if (!defined('PR_INETMAIL_OVERRIDE_FORMAT')) { |
|
3093
|
|
|
define('PR_INETMAIL_OVERRIDE_FORMAT', 0x59020003); |
|
3094
|
|
|
} |
|
3095
|
|
|
if (!defined('PR_MSG_EDITOR_FORMAT')) { |
|
3096
|
|
|
define('PR_MSG_EDITOR_FORMAT', 0x59090003); |
|
3097
|
|
|
} |
|
3098
|
|
|
if (!defined('PR_SENDER_SMTP_ADDRESS')) { |
|
3099
|
|
|
define('PR_SENDER_SMTP_ADDRESS', 0x5D01001E); |
|
3100
|
|
|
} |
|
3101
|
|
|
if (!defined('PR_SENT_REPRESENTING_SMTP_ADDRESS')) { |
|
3102
|
|
|
define('PR_SENT_REPRESENTING_SMTP_ADDRESS', 0x5D02001E); |
|
3103
|
|
|
} |
|
3104
|
|
|
if (!defined('PR_RECIPIENT_ORDER')) { |
|
3105
|
|
|
define('PR_RECIPIENT_ORDER', 0x5FDF0003); |
|
3106
|
|
|
} |
|
3107
|
|
|
if (!defined('PR_RECIPIENT_PROPOSED')) { |
|
3108
|
|
|
define('PR_RECIPIENT_PROPOSED', 0x5FE1000B); |
|
3109
|
|
|
} |
|
3110
|
|
|
if (!defined('PR_RECIPIENT_PROPOSEDSTARTTIME')) { |
|
3111
|
|
|
define('PR_RECIPIENT_PROPOSEDSTARTTIME', 0x5FE30040); |
|
3112
|
|
|
} |
|
3113
|
|
|
if (!defined('PR_RECIPIENT_PROPOSEDENDTIME')) { |
|
3114
|
|
|
define('PR_RECIPIENT_PROPOSEDENDTIME', 0x5FE40040); |
|
3115
|
|
|
} |
|
3116
|
|
|
if (!defined('PR_RECIPIENT_DISPLAY_NAME')) { |
|
3117
|
|
|
define('PR_RECIPIENT_DISPLAY_NAME', 0x5FF6001E); |
|
3118
|
|
|
} |
|
3119
|
|
|
if (!defined('PR_RECIPIENT_ENTRYID')) { |
|
3120
|
|
|
define('PR_RECIPIENT_ENTRYID', 0x5FF70102); |
|
3121
|
|
|
} |
|
3122
|
|
|
if (!defined('PR_RECIPIENT_TRACKSTATUS_TIME')) { |
|
3123
|
|
|
define('PR_RECIPIENT_TRACKSTATUS_TIME', 0x5FFB0040); |
|
3124
|
|
|
} |
|
3125
|
|
|
if (!defined('PR_RECIPIENT_FLAGS')) { |
|
3126
|
|
|
define('PR_RECIPIENT_FLAGS', 0x5FFD0003); |
|
3127
|
|
|
} |
|
3128
|
|
|
if (!defined('PR_RECIPIENT_TRACKSTATUS')) { |
|
3129
|
|
|
define('PR_RECIPIENT_TRACKSTATUS', 0x5FFF0003); |
|
3130
|
|
|
} |
|
3131
|
|
|
if (!defined('PR_JUNK_INCLUDE_CONTACTS')) { |
|
3132
|
|
|
define('PR_JUNK_INCLUDE_CONTACTS', 0x61000003); |
|
3133
|
|
|
} |
|
3134
|
|
|
if (!defined('PR_JUNK_THRESHOLD')) { |
|
3135
|
|
|
define('PR_JUNK_THRESHOLD', 0x61010003); |
|
3136
|
|
|
} |
|
3137
|
|
|
if (!defined('PR_JUNK_PERMANENTLY_DELETE')) { |
|
3138
|
|
|
define('PR_JUNK_PERMANENTLY_DELETE', 0x61020003); |
|
3139
|
|
|
} |
|
3140
|
|
|
if (!defined('PR_JUNK_ADD_RECIPS_TO_SSL')) { |
|
3141
|
|
|
define('PR_JUNK_ADD_RECIPS_TO_SSL', 0x61030003); |
|
3142
|
|
|
} |
|
3143
|
|
|
if (!defined('PR_JUNK_PHISHING_ENABLE_LINKS')) { |
|
3144
|
|
|
define('PR_JUNK_PHISHING_ENABLE_LINKS', 0x6107000B); |
|
3145
|
|
|
} |
|
3146
|
|
|
if (!defined('PR_REPLY_TEMPLATE_ID')) { |
|
3147
|
|
|
define('PR_REPLY_TEMPLATE_ID', 0x65C20102); |
|
3148
|
|
|
} |
|
3149
|
|
|
if (!defined('PR_SECURE_SUBMIT_FLAGS')) { |
|
3150
|
|
|
define('PR_SECURE_SUBMIT_FLAGS', 0x65C60003); |
|
3151
|
|
|
} |
|
3152
|
|
|
if (!defined('PR_SOURCE_KEY')) { |
|
3153
|
|
|
define('PR_SOURCE_KEY', 0x65E00102); |
|
3154
|
|
|
} |
|
3155
|
|
|
if (!defined('PR_PARENT_SOURCE_KEY')) { |
|
3156
|
|
|
define('PR_PARENT_SOURCE_KEY', 0x65E10102); |
|
3157
|
|
|
} |
|
3158
|
|
|
if (!defined('PR_CHANGE_KEY')) { |
|
3159
|
|
|
define('PR_CHANGE_KEY', 0x65E20102); |
|
3160
|
|
|
} |
|
3161
|
|
|
if (!defined('PR_PREDECESSOR_CHANGE_LIST')) { |
|
3162
|
|
|
define('PR_PREDECESSOR_CHANGE_LIST', 0x65E30102); |
|
3163
|
|
|
} |
|
3164
|
|
|
if (!defined('PR_RULE_MSG_STATE')) { |
|
3165
|
|
|
define('PR_RULE_MSG_STATE', 0x65E90003); |
|
3166
|
|
|
} |
|
3167
|
|
|
if (!defined('PR_RULE_MSG_USER_FLAGS')) { |
|
3168
|
|
|
define('PR_RULE_MSG_USER_FLAGS', 0x65EA0003); |
|
3169
|
|
|
} |
|
3170
|
|
|
if (!defined('PR_RULE_MSG_PROVIDER')) { |
|
3171
|
|
|
define('PR_RULE_MSG_PROVIDER', 0x65EB001E); |
|
3172
|
|
|
} |
|
3173
|
|
|
if (!defined('PR_RULE_MSG_NAME')) { |
|
3174
|
|
|
define('PR_RULE_MSG_NAME', 0x65EC001E); |
|
3175
|
|
|
} |
|
3176
|
|
|
if (!defined('PR_RULE_MSG_LEVEL')) { |
|
3177
|
|
|
define('PR_RULE_MSG_LEVEL', 0x65ED0003); |
|
3178
|
|
|
} |
|
3179
|
|
|
if (!defined('PR_RULE_MSG_PROVIDER_DATA')) { |
|
3180
|
|
|
define('PR_RULE_MSG_PROVIDER_DATA', 0x65EE0102); |
|
3181
|
|
|
} |
|
3182
|
|
|
if (!defined('PR_RULE_MSG_SEQUENCE')) { |
|
3183
|
|
|
define('PR_RULE_MSG_SEQUENCE', 0x65F30003); |
|
3184
|
|
|
} |
|
3185
|
|
|
if (!defined('PR_PST_RECEIVE_FOLDER_NID')) { |
|
3186
|
|
|
define('PR_PST_RECEIVE_FOLDER_NID', 0x66050003); |
|
3187
|
|
|
} |
|
3188
|
|
|
if (!defined('PR_PROFILE_TRANSPORT_FLAGS')) { |
|
3189
|
|
|
define('PR_PROFILE_TRANSPORT_FLAGS', 0x66050003); |
|
3190
|
|
|
} |
|
3191
|
|
|
if (!defined('PR_USER_ENTRYID')) { |
|
3192
|
|
|
define('PR_USER_ENTRYID', 0x66190102); |
|
3193
|
|
|
} |
|
3194
|
|
|
if (!defined('PR_USER_NAME')) { |
|
3195
|
|
|
define('PR_USER_NAME', 0x661A001E); |
|
3196
|
|
|
} |
|
3197
|
|
|
if (!defined('PR_MAILBOX_OWNER_ENTRYID')) { |
|
3198
|
|
|
define('PR_MAILBOX_OWNER_ENTRYID', 0x661B0102); |
|
3199
|
|
|
} |
|
3200
|
|
|
if (!defined('PR_MAILBOX_OWNER_NAME')) { |
|
3201
|
|
|
define('PR_MAILBOX_OWNER_NAME', 0x661C001E); |
|
3202
|
|
|
} |
|
3203
|
|
|
if (!defined('PR_MAILBOX_OWNER_NAME_A')) { |
|
3204
|
|
|
define('PR_MAILBOX_OWNER_NAME_A', 0x661C001E); |
|
3205
|
|
|
} |
|
3206
|
|
|
if (!defined('PR_OOF_STATE')) { |
|
3207
|
|
|
define('PR_OOF_STATE', 0x661D000B); |
|
3208
|
|
|
} |
|
3209
|
|
|
if (!defined('PR_SCHEDULE_FOLDER_ENTRYID')) { |
|
3210
|
|
|
define('PR_SCHEDULE_FOLDER_ENTRYID', 0x661E0102); |
|
3211
|
|
|
} |
|
3212
|
|
|
if (!defined('PR_IPM_DAF_ENTRYID')) { |
|
3213
|
|
|
define('PR_IPM_DAF_ENTRYID', 0x661F0102); |
|
3214
|
|
|
} |
|
3215
|
|
|
if (!defined('PR_NON_IPM_SUBTREE_ENTRYID')) { |
|
3216
|
|
|
define('PR_NON_IPM_SUBTREE_ENTRYID', 0x66200102); |
|
3217
|
|
|
} |
|
3218
|
|
|
if (!defined('PR_EFORMS_REGISTRY_ENTRYID')) { |
|
3219
|
|
|
define('PR_EFORMS_REGISTRY_ENTRYID', 0x66210102); |
|
3220
|
|
|
} |
|
3221
|
|
|
if (!defined('PR_SPLUS_FREE_BUSY_ENTRYID')) { |
|
3222
|
|
|
define('PR_SPLUS_FREE_BUSY_ENTRYID', 0x66220102); |
|
3223
|
|
|
} |
|
3224
|
|
|
if (!defined('PR_OFFLINE_ADDRBOOK_ENTRYID')) { |
|
3225
|
|
|
define('PR_OFFLINE_ADDRBOOK_ENTRYID', 0x66230102); |
|
3226
|
|
|
} |
|
3227
|
|
|
if (!defined('PR_TEST_LINE_SPEED')) { |
|
3228
|
|
|
define('PR_TEST_LINE_SPEED', 0x662B0102); |
|
3229
|
|
|
} |
|
3230
|
|
|
if (!defined('PR_HIERARCHY_SYNCHRONIZER')) { |
|
3231
|
|
|
define('PR_HIERARCHY_SYNCHRONIZER', 0x662C000D); |
|
3232
|
|
|
} |
|
3233
|
|
|
if (!defined('PR_CONTENTS_SYNCHRONIZER')) { |
|
3234
|
|
|
define('PR_CONTENTS_SYNCHRONIZER', 0x662D000D); |
|
3235
|
|
|
} |
|
3236
|
|
|
if (!defined('PR_COLLECTOR')) { |
|
3237
|
|
|
define('PR_COLLECTOR', 0x662E000D); |
|
3238
|
|
|
} |
|
3239
|
|
|
if (!defined('PR_IPM_FAVORITES_ENTRYID')) { |
|
3240
|
|
|
define('PR_IPM_FAVORITES_ENTRYID', 0x66300102); |
|
3241
|
|
|
} |
|
3242
|
|
|
if (!defined('PR_IPM_PUBLIC_FOLDERS_ENTRYID')) { |
|
3243
|
|
|
define('PR_IPM_PUBLIC_FOLDERS_ENTRYID', 0x66310102); |
|
3244
|
|
|
} |
|
3245
|
|
|
if (!defined('PR_STORE_OFFLINE')) { |
|
3246
|
|
|
define('PR_STORE_OFFLINE', 0x6632000B); |
|
3247
|
|
|
} |
|
3248
|
|
|
if (!defined('PR_HIERARCHY_SERVER')) { |
|
3249
|
|
|
define('PR_HIERARCHY_SERVER', 0x6633001E); |
|
3250
|
|
|
} |
|
3251
|
|
|
if (!defined('PR_PST_LRNORESTRICTIONS')) { |
|
3252
|
|
|
define('PR_PST_LRNORESTRICTIONS', 0x6633000B); |
|
3253
|
|
|
} |
|
3254
|
|
|
if (!defined('PR_FAVORITES_DEFAULT_NAME')) { |
|
3255
|
|
|
define('PR_FAVORITES_DEFAULT_NAME', 0x6635001E); |
|
3256
|
|
|
} |
|
3257
|
|
|
if (!defined('PR_PROFILE_OAB_COUNT_ATTEMPTED_FULLDN')) { |
|
3258
|
|
|
define('PR_PROFILE_OAB_COUNT_ATTEMPTED_FULLDN', 0x66350003); |
|
3259
|
|
|
} |
|
3260
|
|
|
if (!defined('PR_PST_HIDDEN_COUNT')) { |
|
3261
|
|
|
define('PR_PST_HIDDEN_COUNT', 0x66350003); |
|
3262
|
|
|
} |
|
3263
|
|
|
if (!defined('PR_PROFILE_OAB_COUNT_ATTEMPTED_INCRDN')) { |
|
3264
|
|
|
define('PR_PROFILE_OAB_COUNT_ATTEMPTED_INCRDN', 0x66360003); |
|
3265
|
|
|
} |
|
3266
|
|
|
if (!defined('PR_PST_HIDDEN_UNREAD')) { |
|
3267
|
|
|
define('PR_PST_HIDDEN_UNREAD', 0x66360003); |
|
3268
|
|
|
} |
|
3269
|
|
|
if (!defined('PR_FOLDER_CHILD_COUNT')) { |
|
3270
|
|
|
define('PR_FOLDER_CHILD_COUNT', 0x66380003); |
|
3271
|
|
|
} |
|
3272
|
|
|
if (!defined('PR_RIGHTS')) { |
|
3273
|
|
|
define('PR_RIGHTS', 0x66390003); |
|
3274
|
|
|
} |
|
3275
|
|
|
if (!defined('PR_HAS_RULES')) { |
|
3276
|
|
|
define('PR_HAS_RULES', 0x663A000B); |
|
3277
|
|
|
} |
|
3278
|
|
|
if (!defined('PR_ADDRESS_BOOK_ENTRYID')) { |
|
3279
|
|
|
define('PR_ADDRESS_BOOK_ENTRYID', 0x663B0102); |
|
3280
|
|
|
} |
|
3281
|
|
|
if (!defined('PR_HIERARCHY_CHANGE_NUM')) { |
|
3282
|
|
|
define('PR_HIERARCHY_CHANGE_NUM', 0x663E0003); |
|
3283
|
|
|
} |
|
3284
|
|
|
if (!defined('PR_DELETED_MSG_COUNT')) { |
|
3285
|
|
|
define('PR_DELETED_MSG_COUNT', 0x66400003); |
|
3286
|
|
|
} |
|
3287
|
|
|
if (!defined('PR_DELETED_FOLDER_COUNT')) { |
|
3288
|
|
|
define('PR_DELETED_FOLDER_COUNT', 0x66410003); |
|
3289
|
|
|
} |
|
3290
|
|
|
if (!defined('PR_DELETED_ASSOC_MSG_COUNT')) { |
|
3291
|
|
|
define('PR_DELETED_ASSOC_MSG_COUNT', 0x66430003); |
|
3292
|
|
|
} |
|
3293
|
|
|
if (!defined('PR_REPLICA_SERVER')) { |
|
3294
|
|
|
define('PR_REPLICA_SERVER', 0x6644001E); |
|
3295
|
|
|
} |
|
3296
|
|
|
if (!defined('PR_CLIENT_ACTIONS')) { |
|
3297
|
|
|
define('PR_CLIENT_ACTIONS', 0x66450102); |
|
3298
|
|
|
} |
|
3299
|
|
|
if (!defined('PR_DAM_ORIGINAL_ENTRYID')) { |
|
3300
|
|
|
define('PR_DAM_ORIGINAL_ENTRYID', 0x66460102); |
|
3301
|
|
|
} |
|
3302
|
|
|
if (!defined('PR_DAM_BACK_PATCHED')) { |
|
3303
|
|
|
define('PR_DAM_BACK_PATCHED', 0x6647000B); |
|
3304
|
|
|
} |
|
3305
|
|
|
if (!defined('PR_RULE_ERROR')) { |
|
3306
|
|
|
define('PR_RULE_ERROR', 0x66480003); |
|
3307
|
|
|
} |
|
3308
|
|
|
if (!defined('PR_RULE_ACTION_TYPE')) { |
|
3309
|
|
|
define('PR_RULE_ACTION_TYPE', 0x66490003); |
|
3310
|
|
|
} |
|
3311
|
|
|
if (!defined('PR_HAS_NAMED_PROPERTIES')) { |
|
3312
|
|
|
define('PR_HAS_NAMED_PROPERTIES', 0x664A000B); |
|
3313
|
|
|
} |
|
3314
|
|
|
if (!defined('PR_RULE_ACTION_NUMBER')) { |
|
3315
|
|
|
define('PR_RULE_ACTION_NUMBER', 0x66500003); |
|
3316
|
|
|
} |
|
3317
|
|
|
if (!defined('PR_RULE_FOLDER_ENTRYID')) { |
|
3318
|
|
|
define('PR_RULE_FOLDER_ENTRYID', 0x66510102); |
|
3319
|
|
|
} |
|
3320
|
|
|
if (!defined('PR_PROHIBIT_RECEIVE_QUOTA')) { |
|
3321
|
|
|
define('PR_PROHIBIT_RECEIVE_QUOTA', 0x666A0003); |
|
3322
|
|
|
} |
|
3323
|
|
|
if (!defined('PR_IN_CONFLICT')) { |
|
3324
|
|
|
define('PR_IN_CONFLICT', 0x666C000B); |
|
3325
|
|
|
} |
|
3326
|
|
|
if (!defined('PR_MAX_SUBMIT_MESSAGE_SIZE')) { |
|
3327
|
|
|
define('PR_MAX_SUBMIT_MESSAGE_SIZE', 0x666D0003); |
|
3328
|
|
|
} |
|
3329
|
|
|
if (!defined('PR_PROHIBIT_SEND_QUOTA')) { |
|
3330
|
|
|
define('PR_PROHIBIT_SEND_QUOTA', 0x666E0003); |
|
3331
|
|
|
} |
|
3332
|
|
|
if (!defined('PR_EC_USER_LANGUAGE')) { |
|
3333
|
|
|
define('PR_EC_USER_LANGUAGE', 0x6670001E); |
|
3334
|
|
|
} |
|
3335
|
|
|
if (!defined('PR_EC_USER_TIMEZONE')) { |
|
3336
|
|
|
define('PR_EC_USER_TIMEZONE', 0x6671001E); |
|
3337
|
|
|
} |
|
3338
|
|
|
if (!defined('PR_MEMBER_ID')) { |
|
3339
|
|
|
define('PR_MEMBER_ID', 0x66710014); |
|
3340
|
|
|
} |
|
3341
|
|
|
if (!defined('PR_MEMBER_NAME')) { |
|
3342
|
|
|
define('PR_MEMBER_NAME', 0x6672001E); |
|
3343
|
|
|
} |
|
3344
|
|
|
if (!defined('PR_MEMBER_NAME_A')) { |
|
3345
|
|
|
define('PR_MEMBER_NAME_A', 0x6672001E); |
|
3346
|
|
|
} |
|
3347
|
|
|
if (!defined('PR_MEMBER_RIGHTS')) { |
|
3348
|
|
|
define('PR_MEMBER_RIGHTS', 0x66730003); |
|
3349
|
|
|
} |
|
3350
|
|
|
if (!defined('PR_RULE_ID')) { |
|
3351
|
|
|
define('PR_RULE_ID', 0x66740014); |
|
3352
|
|
|
} |
|
3353
|
|
|
if (!defined('PR_RULE_IDS')) { |
|
3354
|
|
|
define('PR_RULE_IDS', 0x66750102); |
|
3355
|
|
|
} |
|
3356
|
|
|
if (!defined('PR_RULE_SEQUENCE')) { |
|
3357
|
|
|
define('PR_RULE_SEQUENCE', 0x66760003); |
|
3358
|
|
|
} |
|
3359
|
|
|
if (!defined('PR_RULE_STATE')) { |
|
3360
|
|
|
define('PR_RULE_STATE', 0x66770003); |
|
3361
|
|
|
} |
|
3362
|
|
|
if (!defined('PR_RULE_USER_FLAGS')) { |
|
3363
|
|
|
define('PR_RULE_USER_FLAGS', 0x66780003); |
|
3364
|
|
|
} |
|
3365
|
|
|
if (!defined('PR_RULE_CONDITION')) { |
|
3366
|
|
|
define('PR_RULE_CONDITION', 0x667900FD); |
|
3367
|
|
|
} |
|
3368
|
|
|
if (!defined('PR_RULE_ACTIONS')) { |
|
3369
|
|
|
define('PR_RULE_ACTIONS', 0x668000FE); |
|
3370
|
|
|
} |
|
3371
|
|
|
if (!defined('PR_RULE_PROVIDER')) { |
|
3372
|
|
|
define('PR_RULE_PROVIDER', 0x6681001E); |
|
3373
|
|
|
} |
|
3374
|
|
|
if (!defined('PR_RULE_PROVIDER_A')) { |
|
3375
|
|
|
define('PR_RULE_PROVIDER_A', 0x6681001E); |
|
3376
|
|
|
} |
|
3377
|
|
|
if (!defined('PR_RULE_NAME')) { |
|
3378
|
|
|
define('PR_RULE_NAME', 0x6682001E); |
|
3379
|
|
|
} |
|
3380
|
|
|
if (!defined('PR_RULE_NAME_A')) { |
|
3381
|
|
|
define('PR_RULE_NAME_A', 0x6682001E); |
|
3382
|
|
|
} |
|
3383
|
|
|
if (!defined('PR_RULE_LEVEL')) { |
|
3384
|
|
|
define('PR_RULE_LEVEL', 0x66830003); |
|
3385
|
|
|
} |
|
3386
|
|
|
if (!defined('PR_RULE_PROVIDER_DATA')) { |
|
3387
|
|
|
define('PR_RULE_PROVIDER_DATA', 0x66840102); |
|
3388
|
|
|
} |
|
3389
|
|
|
if (!defined('PR_RULE_VERSION')) { |
|
3390
|
|
|
define('PR_RULE_VERSION', 0x668D0002); |
|
3391
|
|
|
} |
|
3392
|
|
|
if (!defined('PR_DELETED_ON')) { |
|
3393
|
|
|
define('PR_DELETED_ON', 0x668F0040); |
|
3394
|
|
|
} |
|
3395
|
|
|
if (!defined('PR_DELETED_MESSAGE_SIZE')) { |
|
3396
|
|
|
define('PR_DELETED_MESSAGE_SIZE', 0x669B0003); |
|
3397
|
|
|
} |
|
3398
|
|
|
if (!defined('PR_DELETED_MESSAGE_SIZE_EXTENDED')) { |
|
3399
|
|
|
define('PR_DELETED_MESSAGE_SIZE_EXTENDED', 0x669B0014); |
|
3400
|
|
|
} |
|
3401
|
|
|
if (!defined('PR_DELETED_NORMAL_MESSAGE_SIZE')) { |
|
3402
|
|
|
define('PR_DELETED_NORMAL_MESSAGE_SIZE', 0x669C0003); |
|
3403
|
|
|
} |
|
3404
|
|
|
if (!defined('PR_DELETED_NORMAL_MESSAGE_SIZE_EXTENDED')) { |
|
3405
|
|
|
define('PR_DELETED_NORMAL_MESSAGE_SIZE_EXTENDED', 0x669C0014); |
|
3406
|
|
|
} |
|
3407
|
|
|
if (!defined('PR_DELETED_ASSOC_MESSAGE_SIZE')) { |
|
3408
|
|
|
define('PR_DELETED_ASSOC_MESSAGE_SIZE', 0x669D0003); |
|
3409
|
|
|
} |
|
3410
|
|
|
if (!defined('PR_DELETED_ASSOC_MESSAGE_SIZE_EXTENDED')) { |
|
3411
|
|
|
define('PR_DELETED_ASSOC_MESSAGE_SIZE_EXTENDED', 0x669D0014); |
|
3412
|
|
|
} |
|
3413
|
|
|
if (!defined('PR_LOCALE_ID')) { |
|
3414
|
|
|
define('PR_LOCALE_ID', 0x66A10003); |
|
3415
|
|
|
} |
|
3416
|
|
|
if (!defined('PR_FOLDER_FLAGS')) { |
|
3417
|
|
|
define('PR_FOLDER_FLAGS', 0x66A80003); |
|
3418
|
|
|
} |
|
3419
|
|
|
if (!defined('PR_NORMAL_MSG_W_ATTACH_COUNT')) { |
|
3420
|
|
|
define('PR_NORMAL_MSG_W_ATTACH_COUNT', 0x66AD0003); |
|
3421
|
|
|
} |
|
3422
|
|
|
if (!defined('PR_ASSOC_MSG_W_ATTACH_COUNT')) { |
|
3423
|
|
|
define('PR_ASSOC_MSG_W_ATTACH_COUNT', 0x66AE0003); |
|
3424
|
|
|
} |
|
3425
|
|
|
if (!defined('PR_NORMAL_MESSAGE_SIZE')) { |
|
3426
|
|
|
define('PR_NORMAL_MESSAGE_SIZE', 0x66B30003); |
|
3427
|
|
|
} |
|
3428
|
|
|
if (!defined('PR_NORMAL_MESSAGE_SIZE_EXTENDED')) { |
|
3429
|
|
|
define('PR_NORMAL_MESSAGE_SIZE_EXTENDED', 0x66B30014); |
|
3430
|
|
|
} |
|
3431
|
|
|
if (!defined('PR_ASSOC_MESSAGE_SIZE')) { |
|
3432
|
|
|
define('PR_ASSOC_MESSAGE_SIZE', 0x66B40003); |
|
3433
|
|
|
} |
|
3434
|
|
|
if (!defined('PR_ASSOC_MESSAGE_SIZE_EXTENDED')) { |
|
3435
|
|
|
define('PR_ASSOC_MESSAGE_SIZE_EXTENDED', 0x66B40014); |
|
3436
|
|
|
} |
|
3437
|
|
|
if (!defined('PR_FOLDER_PATHNAME')) { |
|
3438
|
|
|
define('PR_FOLDER_PATHNAME', 0x66B5001E); |
|
3439
|
|
|
} |
|
3440
|
|
|
if (!defined('PR_CODE_PAGE_ID')) { |
|
3441
|
|
|
define('PR_CODE_PAGE_ID', 0x66C30003); |
|
3442
|
|
|
} |
|
3443
|
|
|
if (!defined('PR_LATEST_PST_ENSURE')) { |
|
3444
|
|
|
define('PR_LATEST_PST_ENSURE', 0x66FA0003); |
|
3445
|
|
|
} |
|
3446
|
|
|
if (!defined('PR_EMS_AB_MANAGE_DL')) { |
|
3447
|
|
|
define('PR_EMS_AB_MANAGE_DL', 0x6704000D); |
|
3448
|
|
|
} |
|
3449
|
|
|
if (!defined('PR_SORT_LOCALE_ID')) { |
|
3450
|
|
|
define('PR_SORT_LOCALE_ID', 0x67050003); |
|
3451
|
|
|
} |
|
3452
|
|
|
if (!defined('PR_EC_SSLKEY_PASS')) { |
|
3453
|
|
|
define('PR_EC_SSLKEY_PASS', 0x6706001E); |
|
3454
|
|
|
} |
|
3455
|
|
|
if (!defined('PR_LOCAL_COMMIT_TIME')) { |
|
3456
|
|
|
define('PR_LOCAL_COMMIT_TIME', 0x67090040); |
|
3457
|
|
|
} |
|
3458
|
|
|
if (!defined('PR_LOCAL_COMMIT_TIME_MAX')) { |
|
3459
|
|
|
define('PR_LOCAL_COMMIT_TIME_MAX', 0x670A0040); |
|
3460
|
|
|
} |
|
3461
|
|
|
if (!defined('PR_DELETED_COUNT_TOTAL')) { |
|
3462
|
|
|
define('PR_DELETED_COUNT_TOTAL', 0x670B0003); |
|
3463
|
|
|
} |
|
3464
|
|
|
if (!defined('PR_FLAT_URL_NAME')) { |
|
3465
|
|
|
define('PR_FLAT_URL_NAME', 0x670E001E); |
|
3466
|
|
|
} |
|
3467
|
|
|
if (!defined('PR_ZC_CONTACT_STORE_ENTRYIDS')) { |
|
3468
|
|
|
define('PR_ZC_CONTACT_STORE_ENTRYIDS', 0x67111102); |
|
3469
|
|
|
} |
|
3470
|
|
|
if (!defined('PR_ZC_CONTACT_FOLDER_ENTRYIDS')) { |
|
3471
|
|
|
define('PR_ZC_CONTACT_FOLDER_ENTRYIDS', 0x67121102); |
|
3472
|
|
|
} |
|
3473
|
|
|
if (!defined('PR_ZC_CONTACT_FOLDER_NAMES')) { |
|
3474
|
|
|
define('PR_ZC_CONTACT_FOLDER_NAMES', 0x6713101E); |
|
3475
|
|
|
} |
|
3476
|
|
|
if (!defined('PR_EC_SERVER_VERSION')) { |
|
3477
|
|
|
define('PR_EC_SERVER_VERSION', 0x6716001E); |
|
3478
|
|
|
} |
|
3479
|
|
|
if (!defined('PR_QUOTA_WARNING_THRESHOLD')) { |
|
3480
|
|
|
define('PR_QUOTA_WARNING_THRESHOLD', 0x67210003); |
|
3481
|
|
|
} |
|
3482
|
|
|
if (!defined('PR_QUOTA_SEND_THRESHOLD')) { |
|
3483
|
|
|
define('PR_QUOTA_SEND_THRESHOLD', 0x67220003); |
|
3484
|
|
|
} |
|
3485
|
|
|
if (!defined('PR_QUOTA_RECEIVE_THRESHOLD')) { |
|
3486
|
|
|
define('PR_QUOTA_RECEIVE_THRESHOLD', 0x67230003); |
|
3487
|
|
|
} |
|
3488
|
|
|
if (!defined('PR_EC_MESSAGE_BCC_ME')) { |
|
3489
|
|
|
define('PR_EC_MESSAGE_BCC_ME', 0x6725000B); |
|
3490
|
|
|
} |
|
3491
|
|
|
if (!defined('PR_MANAGED_FOLDER_INFORMATION')) { |
|
3492
|
|
|
define('PR_MANAGED_FOLDER_INFORMATION', 0x672D0003); |
|
3493
|
|
|
} |
|
3494
|
|
|
if (!defined('PR_MANAGED_FOLDER_SIZE')) { |
|
3495
|
|
|
define('PR_MANAGED_FOLDER_SIZE', 0x67300003); |
|
3496
|
|
|
} |
|
3497
|
|
|
if (!defined('PR_MANAGED_FOLDER_STORAGE_QUOTA')) { |
|
3498
|
|
|
define('PR_MANAGED_FOLDER_STORAGE_QUOTA', 0x67310003); |
|
3499
|
|
|
} |
|
3500
|
|
|
if (!defined('PR_MANAGED_FOLDER_ID')) { |
|
3501
|
|
|
define('PR_MANAGED_FOLDER_ID', 0x6732001E); |
|
3502
|
|
|
} |
|
3503
|
|
|
if (!defined('PR_MANAGED_FOLDER_COMMENT')) { |
|
3504
|
|
|
define('PR_MANAGED_FOLDER_COMMENT', 0x6733001E); |
|
3505
|
|
|
} |
|
3506
|
|
|
if (!defined('PR_DAM_ORIG_MSG_SVREID')) { |
|
3507
|
|
|
define('PR_DAM_ORIG_MSG_SVREID', 0x67410102); |
|
3508
|
|
|
} |
|
3509
|
|
|
if (!defined('PR_RULE_FOLDER_FID')) { |
|
3510
|
|
|
define('PR_RULE_FOLDER_FID', 0x67420014); |
|
3511
|
|
|
} |
|
3512
|
|
|
if (!defined('PR_INTERNET_ARTICLE_NUMBER_NEXT')) { |
|
3513
|
|
|
define('PR_INTERNET_ARTICLE_NUMBER_NEXT', 0x67510003); |
|
3514
|
|
|
} |
|
3515
|
|
|
if (!defined('PR_EC_OUTOFOFFICE')) { |
|
3516
|
|
|
define('PR_EC_OUTOFOFFICE', 0x67600003); |
|
3517
|
|
|
} |
|
3518
|
|
|
if (!defined('PR_EC_OUTOFOFFICE_MSG')) { |
|
3519
|
|
|
define('PR_EC_OUTOFOFFICE_MSG', 0x6761001E); |
|
3520
|
|
|
} |
|
3521
|
|
|
if (!defined('PR_EC_OUTOFOFFICE_SUBJECT')) { |
|
3522
|
|
|
define('PR_EC_OUTOFOFFICE_SUBJECT', 0x6762001E); |
|
3523
|
|
|
} |
|
3524
|
|
|
if (!defined('PR_EC_OUTOFOFFICE_FROM')) { |
|
3525
|
|
|
define('PR_EC_OUTOFOFFICE_FROM', 0x67630040); |
|
3526
|
|
|
} |
|
3527
|
|
|
if (!defined('PR_EC_OUTOFOFFICE_UNTIL')) { |
|
3528
|
|
|
define('PR_EC_OUTOFOFFICE_UNTIL', 0x67640040); |
|
3529
|
|
|
} |
|
3530
|
|
|
if (!defined('PR_EC_ALLOW_EXTERNAL')) { |
|
3531
|
|
|
define('PR_EC_ALLOW_EXTERNAL', 0x6765000B); |
|
3532
|
|
|
} |
|
3533
|
|
|
if (!defined('PR_EC_EXTERNAL_AUDIENCE')) { |
|
3534
|
|
|
define('PR_EC_EXTERNAL_AUDIENCE', 0x6766000B); |
|
3535
|
|
|
} |
|
3536
|
|
|
if (!defined('PR_EC_EXTERNAL_REPLY')) { |
|
3537
|
|
|
define('PR_EC_EXTERNAL_REPLY', 0x6767001E); |
|
3538
|
|
|
} |
|
3539
|
|
|
if (!defined('PR_EC_EXTERNAL_SUBJECT')) { |
|
3540
|
|
|
define('PR_EC_EXTERNAL_SUBJECT', 0x6768001E); |
|
3541
|
|
|
} |
|
3542
|
|
|
if (!defined('PR_EC_WEBACCESS_SETTINGS_JSON')) { |
|
3543
|
|
|
define('PR_EC_WEBACCESS_SETTINGS_JSON', 0x6772001E); |
|
3544
|
|
|
} |
|
3545
|
|
|
if (!defined('PR_EC_RECIPIENT_HISTORY_JSON')) { |
|
3546
|
|
|
define('PR_EC_RECIPIENT_HISTORY_JSON', 0x6773001E); |
|
3547
|
|
|
} |
|
3548
|
|
|
if (!defined('PR_EC_WEBAPP_PERSISTENT_SETTINGS_JSON')) { |
|
3549
|
|
|
define('PR_EC_WEBAPP_PERSISTENT_SETTINGS_JSON', 0x6774001E); |
|
3550
|
|
|
} |
|
3551
|
|
|
if (!defined('PR_EC_OUTGOING_FLAGS')) { |
|
3552
|
|
|
define('PR_EC_OUTGOING_FLAGS', 0x67800003); |
|
3553
|
|
|
} |
|
3554
|
|
|
if (!defined('PR_EC_IMAP_ID')) { |
|
3555
|
|
|
define('PR_EC_IMAP_ID', 0x67820003); |
|
3556
|
|
|
} |
|
3557
|
|
|
if (!defined('PR_EC_IMAP_SUBSCRIBED')) { |
|
3558
|
|
|
define('PR_EC_IMAP_SUBSCRIBED', 0x67840102); |
|
3559
|
|
|
} |
|
3560
|
|
|
if (!defined('PR_EC_IMAP_MAX_ID')) { |
|
3561
|
|
|
define('PR_EC_IMAP_MAX_ID', 0x67850003); |
|
3562
|
|
|
} |
|
3563
|
|
|
if (!defined('PR_EC_CLIENT_SUBMIT_DATE')) { |
|
3564
|
|
|
define('PR_EC_CLIENT_SUBMIT_DATE', 0x67860040); |
|
3565
|
|
|
} |
|
3566
|
|
|
if (!defined('PR_EC_MESSAGE_DELIVERY_DATE')) { |
|
3567
|
|
|
define('PR_EC_MESSAGE_DELIVERY_DATE', 0x67870040); |
|
3568
|
|
|
} |
|
3569
|
|
|
if (!defined('PR_EC_IMAP_EMAIL_SIZE')) { |
|
3570
|
|
|
define('PR_EC_IMAP_EMAIL_SIZE', 0x678D0003); |
|
3571
|
|
|
} |
|
3572
|
|
|
if (!defined('PR_EC_IMAP_BODY')) { |
|
3573
|
|
|
define('PR_EC_IMAP_BODY', 0x678E001E); |
|
3574
|
|
|
} |
|
3575
|
|
|
if (!defined('PR_EC_IMAP_BODYSTRUCTURE')) { |
|
3576
|
|
|
define('PR_EC_IMAP_BODYSTRUCTURE', 0x678F001E); |
|
3577
|
|
|
} |
|
3578
|
|
|
if (!defined('PR_ASSOCIATED')) { |
|
3579
|
|
|
define('PR_ASSOCIATED', 0x67AA000B); |
|
3580
|
|
|
} |
|
3581
|
|
|
if (!defined('PR_EC_ENABLED_FEATURES_L')) { |
|
3582
|
|
|
define('PR_EC_ENABLED_FEATURES_L', 0x67B30003); |
|
3583
|
|
|
} |
|
3584
|
|
|
if (!defined('PR_LTP_ROW_ID')) { |
|
3585
|
|
|
define('PR_LTP_ROW_ID', 0x67F20003); |
|
3586
|
|
|
} |
|
3587
|
|
|
if (!defined('PR_LTP_ROW_VER')) { |
|
3588
|
|
|
define('PR_LTP_ROW_VER', 0x67F30003); |
|
3589
|
|
|
} |
|
3590
|
|
|
if (!defined('PR_PST_PASSWORD')) { |
|
3591
|
|
|
define('PR_PST_PASSWORD', 0x67FF0003); |
|
3592
|
|
|
} |
|
3593
|
|
|
if (!defined('PR_OAB_NAME')) { |
|
3594
|
|
|
define('PR_OAB_NAME', 0x6800001E); |
|
3595
|
|
|
} |
|
3596
|
|
|
if (!defined('PR_OAB_SEQUENCE')) { |
|
3597
|
|
|
define('PR_OAB_SEQUENCE', 0x68010003); |
|
3598
|
|
|
} |
|
3599
|
|
|
if (!defined('PR_RW_RULES_STREAM')) { |
|
3600
|
|
|
define('PR_RW_RULES_STREAM', 0x68020102); |
|
3601
|
|
|
} |
|
3602
|
|
|
if (!defined('PR_SENDER_TELEPHONE_NUMBER')) { |
|
3603
|
|
|
define('PR_SENDER_TELEPHONE_NUMBER', 0x6802001E); |
|
3604
|
|
|
} |
|
3605
|
|
|
if (!defined('PR_SENDER_TELEPHONE_NUMBER_A')) { |
|
3606
|
|
|
define('PR_SENDER_TELEPHONE_NUMBER_A', 0x6802001E); |
|
3607
|
|
|
} |
|
3608
|
|
|
if (!defined('PR_OAB_CONTAINER_GUID')) { |
|
3609
|
|
|
define('PR_OAB_CONTAINER_GUID', 0x6802001E); |
|
3610
|
|
|
} |
|
3611
|
|
|
if (!defined('PR_OAB_MESSAGE_CLASS')) { |
|
3612
|
|
|
define('PR_OAB_MESSAGE_CLASS', 0x68030003); |
|
3613
|
|
|
} |
|
3614
|
|
|
if (!defined('PR_OAB_DN')) { |
|
3615
|
|
|
define('PR_OAB_DN', 0x6804001E); |
|
3616
|
|
|
} |
|
3617
|
|
|
if (!defined('PR_OAB_TRUNCATED_PROPS')) { |
|
3618
|
|
|
define('PR_OAB_TRUNCATED_PROPS', 0x68051003); |
|
3619
|
|
|
} |
|
3620
|
|
|
if (!defined('PR_WB_SF_LAST_USED')) { |
|
3621
|
|
|
define('PR_WB_SF_LAST_USED', 0x68340003); |
|
3622
|
|
|
} |
|
3623
|
|
|
if (!defined('PR_WB_SF_EXPIRATION')) { |
|
3624
|
|
|
define('PR_WB_SF_EXPIRATION', 0x683A0003); |
|
3625
|
|
|
} |
|
3626
|
|
|
if (!defined('PR_WB_SF_TEMPLATE_ID')) { |
|
3627
|
|
|
define('PR_WB_SF_TEMPLATE_ID', 0x68410003); |
|
3628
|
|
|
} |
|
3629
|
|
|
if (!defined('PR_SCHDINFO_BOSS_WANTS_COPY')) { |
|
3630
|
|
|
define('PR_SCHDINFO_BOSS_WANTS_COPY', 0x6842000B); |
|
3631
|
|
|
} |
|
3632
|
|
|
if (!defined('PR_WB_SF_ID')) { |
|
3633
|
|
|
define('PR_WB_SF_ID', 0x68420102); |
|
3634
|
|
|
} |
|
3635
|
|
|
if (!defined('PR_SCHDINFO_DONT_MAIL_DELEGATES')) { |
|
3636
|
|
|
define('PR_SCHDINFO_DONT_MAIL_DELEGATES', 0x6843000B); |
|
3637
|
|
|
} |
|
3638
|
|
|
if (!defined('PR_SCHDINFO_DELEGATE_NAMES')) { |
|
3639
|
|
|
define('PR_SCHDINFO_DELEGATE_NAMES', 0x6844101E); |
|
3640
|
|
|
} |
|
3641
|
|
|
if (!defined('PR_WB_SF_RECREATE_INFO')) { |
|
3642
|
|
|
define('PR_WB_SF_RECREATE_INFO', 0x68440102); |
|
3643
|
|
|
} |
|
3644
|
|
|
if (!defined('PR_SCHDINFO_DELEGATE_ENTRYIDS')) { |
|
3645
|
|
|
define('PR_SCHDINFO_DELEGATE_ENTRYIDS', 0x68451102); |
|
3646
|
|
|
} |
|
3647
|
|
|
if (!defined('PR_WB_SF_DEFINITION')) { |
|
3648
|
|
|
define('PR_WB_SF_DEFINITION', 0x68450102); |
|
3649
|
|
|
} |
|
3650
|
|
|
if (!defined('PR_GATEWAY_NEEDS_TO_REFRESH')) { |
|
3651
|
|
|
define('PR_GATEWAY_NEEDS_TO_REFRESH', 0x6846000B); |
|
3652
|
|
|
} |
|
3653
|
|
|
if (!defined('PR_WB_SF_STORAGE_TYPE')) { |
|
3654
|
|
|
define('PR_WB_SF_STORAGE_TYPE', 0x68460003); |
|
3655
|
|
|
} |
|
3656
|
|
|
if (!defined('PR_FREEBUSY_PUBLISH_START')) { |
|
3657
|
|
|
define('PR_FREEBUSY_PUBLISH_START', 0x68470003); |
|
3658
|
|
|
} |
|
3659
|
|
|
if (!defined('PR_FREEBUSY_PUBLISH_END')) { |
|
3660
|
|
|
define('PR_FREEBUSY_PUBLISH_END', 0x68480003); |
|
3661
|
|
|
} |
|
3662
|
|
|
if (!defined('PR_FREEBUSY_EMA')) { |
|
3663
|
|
|
define('PR_FREEBUSY_EMA', 0x6849001E); |
|
3664
|
|
|
} |
|
3665
|
|
|
if (!defined('PR_WLINK_TYPE')) { |
|
3666
|
|
|
define('PR_WLINK_TYPE', 0x68490003); |
|
3667
|
|
|
} |
|
3668
|
|
|
if (!defined('PR_SCHDINFO_DELEGATE_NAMES_W')) { |
|
3669
|
|
|
define('PR_SCHDINFO_DELEGATE_NAMES_W', 0x684A101E); |
|
3670
|
|
|
} |
|
3671
|
|
|
if (!defined('PR_WLINK_FLAGS')) { |
|
3672
|
|
|
define('PR_WLINK_FLAGS', 0x684A0003); |
|
3673
|
|
|
} |
|
3674
|
|
|
if (!defined('PR_SCHDINFO_BOSS_WANTS_INFO')) { |
|
3675
|
|
|
define('PR_SCHDINFO_BOSS_WANTS_INFO', 0x684B000B); |
|
3676
|
|
|
} |
|
3677
|
|
|
if (!defined('PR_WLINK_ORDINAL')) { |
|
3678
|
|
|
define('PR_WLINK_ORDINAL', 0x684B0102); |
|
3679
|
|
|
} |
|
3680
|
|
|
if (!defined('PR_WLINK_ENTRYID')) { |
|
3681
|
|
|
define('PR_WLINK_ENTRYID', 0x684C0102); |
|
3682
|
|
|
} |
|
3683
|
|
|
if (!defined('PR_WLINK_RECKEY')) { |
|
3684
|
|
|
define('PR_WLINK_RECKEY', 0x684D0102); |
|
3685
|
|
|
} |
|
3686
|
|
|
if (!defined('PR_WLINK_STORE_ENTRYID')) { |
|
3687
|
|
|
define('PR_WLINK_STORE_ENTRYID', 0x684E0102); |
|
3688
|
|
|
} |
|
3689
|
|
|
if (!defined('PR_SCHDINFO_MONTHS_MERGED')) { |
|
3690
|
|
|
define('PR_SCHDINFO_MONTHS_MERGED', 0x684F1003); |
|
3691
|
|
|
} |
|
3692
|
|
|
if (!defined('PR_WLINK_FOLDER_TYPE')) { |
|
3693
|
|
|
define('PR_WLINK_FOLDER_TYPE', 0x684F0102); |
|
3694
|
|
|
} |
|
3695
|
|
|
if (!defined('PR_SCHDINFO_FREEBUSY_MERGED')) { |
|
3696
|
|
|
define('PR_SCHDINFO_FREEBUSY_MERGED', 0x68501102); |
|
3697
|
|
|
} |
|
3698
|
|
|
if (!defined('PR_WLINK_GROUP_CLSID')) { |
|
3699
|
|
|
define('PR_WLINK_GROUP_CLSID', 0x68500102); |
|
3700
|
|
|
} |
|
3701
|
|
|
if (!defined('PR_SCHDINFO_MONTHS_TENTATIVE')) { |
|
3702
|
|
|
define('PR_SCHDINFO_MONTHS_TENTATIVE', 0x68511003); |
|
3703
|
|
|
} |
|
3704
|
|
|
if (!defined('PR_WLINK_GROUP_NAME')) { |
|
3705
|
|
|
define('PR_WLINK_GROUP_NAME', 0x6851001E); |
|
3706
|
|
|
} |
|
3707
|
|
|
if (!defined('PR_SCHDINFO_FREEBUSY_TENTATIVE')) { |
|
3708
|
|
|
define('PR_SCHDINFO_FREEBUSY_TENTATIVE', 0x68521102); |
|
3709
|
|
|
} |
|
3710
|
|
|
if (!defined('PR_WLINK_SECTION')) { |
|
3711
|
|
|
define('PR_WLINK_SECTION', 0x68520003); |
|
3712
|
|
|
} |
|
3713
|
|
|
if (!defined('PR_SCHDINFO_MONTHS_BUSY')) { |
|
3714
|
|
|
define('PR_SCHDINFO_MONTHS_BUSY', 0x68531003); |
|
3715
|
|
|
} |
|
3716
|
|
|
if (!defined('PR_WLINK_CALENDAR_COLOR')) { |
|
3717
|
|
|
define('PR_WLINK_CALENDAR_COLOR', 0x68530003); |
|
3718
|
|
|
} |
|
3719
|
|
|
if (!defined('PR_SCHDINFO_FREEBUSY_BUSY')) { |
|
3720
|
|
|
define('PR_SCHDINFO_FREEBUSY_BUSY', 0x68541102); |
|
3721
|
|
|
} |
|
3722
|
|
|
if (!defined('PR_WLINK_ABEID')) { |
|
3723
|
|
|
define('PR_WLINK_ABEID', 0x68540102); |
|
3724
|
|
|
} |
|
3725
|
|
|
if (!defined('PR_SCHDINFO_MONTHS_OOF')) { |
|
3726
|
|
|
define('PR_SCHDINFO_MONTHS_OOF', 0x68551003); |
|
3727
|
|
|
} |
|
3728
|
|
|
if (!defined('PR_SCHDINFO_FREEBUSY_OOF')) { |
|
3729
|
|
|
define('PR_SCHDINFO_FREEBUSY_OOF', 0x68561102); |
|
3730
|
|
|
} |
|
3731
|
|
|
if (!defined('PR_FREEBUSY_RANGE_TIMESTAMP')) { |
|
3732
|
|
|
define('PR_FREEBUSY_RANGE_TIMESTAMP', 0x68680040); |
|
3733
|
|
|
} |
|
3734
|
|
|
if (!defined('PR_FREEBUSY_COUNT_MONTHS')) { |
|
3735
|
|
|
define('PR_FREEBUSY_COUNT_MONTHS', 0x68690003); |
|
3736
|
|
|
} |
|
3737
|
|
|
if (!defined('PR_SCHDINFO_APPT_TOMBSTONE')) { |
|
3738
|
|
|
define('PR_SCHDINFO_APPT_TOMBSTONE', 0x686A0102); |
|
3739
|
|
|
} |
|
3740
|
|
|
if (!defined('PR_DELEGATE_FLAGS')) { |
|
3741
|
|
|
define('PR_DELEGATE_FLAGS', 0x686B1003); |
|
3742
|
|
|
} |
|
3743
|
|
|
if (!defined('PR_SCHDINFO_FREEBUSY')) { |
|
3744
|
|
|
define('PR_SCHDINFO_FREEBUSY', 0x686C0102); |
|
3745
|
|
|
} |
|
3746
|
|
|
if (!defined('PR_SCHDINFO_AUTO_ACCEPT_APPTS')) { |
|
3747
|
|
|
define('PR_SCHDINFO_AUTO_ACCEPT_APPTS', 0x686D000B); |
|
3748
|
|
|
} |
|
3749
|
|
|
if (!defined('PR_SCHDINFO_DISALLOW_RECURRING_APPTS')) { |
|
3750
|
|
|
define('PR_SCHDINFO_DISALLOW_RECURRING_APPTS', 0x686E000B); |
|
3751
|
|
|
} |
|
3752
|
|
|
if (!defined('PR_SCHDINFO_DISALLOW_OVERLAPPING_APPTS')) { |
|
3753
|
|
|
define('PR_SCHDINFO_DISALLOW_OVERLAPPING_APPTS', 0x686F000B); |
|
3754
|
|
|
} |
|
3755
|
|
|
if (!defined('PR_WLINK_CLIENTID')) { |
|
3756
|
|
|
define('PR_WLINK_CLIENTID', 0x68900102); |
|
3757
|
|
|
} |
|
3758
|
|
|
if (!defined('PR_WLINK_AB_EXSTOREEID')) { |
|
3759
|
|
|
define('PR_WLINK_AB_EXSTOREEID', 0x68910102); |
|
3760
|
|
|
} |
|
3761
|
|
|
if (!defined('PR_WLINK_RO_GROUP_TYPE')) { |
|
3762
|
|
|
define('PR_WLINK_RO_GROUP_TYPE', 0x68920003); |
|
3763
|
|
|
} |
|
3764
|
|
|
if (!defined('PR_SECURITY_FLAGS')) { |
|
3765
|
|
|
define('PR_SECURITY_FLAGS', 0x6E010003); |
|
3766
|
|
|
} |
|
3767
|
|
|
if (!defined('PR_VD_BINARY')) { |
|
3768
|
|
|
define('PR_VD_BINARY', 0x70010102); |
|
3769
|
|
|
} |
|
3770
|
|
|
if (!defined('PR_VD_STRINGS')) { |
|
3771
|
|
|
define('PR_VD_STRINGS', 0x7002001E); |
|
3772
|
|
|
} |
|
3773
|
|
|
if (!defined('PR_VD_NAME')) { |
|
3774
|
|
|
define('PR_VD_NAME', 0x7006001E); |
|
3775
|
|
|
} |
|
3776
|
|
|
if (!defined('PR_VD_VERSION')) { |
|
3777
|
|
|
define('PR_VD_VERSION', 0x70070003); |
|
3778
|
|
|
} |
|
3779
|
|
|
if (!defined('PR_FAV_DISPLAY_NAME')) { |
|
3780
|
|
|
define('PR_FAV_DISPLAY_NAME', 0x7C00001E); |
|
3781
|
|
|
} |
|
3782
|
|
|
if (!defined('PR_FAV_DISPLAY_ALIAS')) { |
|
3783
|
|
|
define('PR_FAV_DISPLAY_ALIAS', 0x7C01001E); |
|
3784
|
|
|
} |
|
3785
|
|
|
if (!defined('PR_FAV_PUBLIC_SOURCE_KEY')) { |
|
3786
|
|
|
define('PR_FAV_PUBLIC_SOURCE_KEY', 0x7C020102); |
|
3787
|
|
|
} |
|
3788
|
|
|
if (!defined('PR_OST_OSTID')) { |
|
3789
|
|
|
define('PR_OST_OSTID', 0x7C040102); |
|
3790
|
|
|
} |
|
3791
|
|
|
if (!defined('PR_OFFLINE_FOLDER')) { |
|
3792
|
|
|
define('PR_OFFLINE_FOLDER', 0x7C050102); |
|
3793
|
|
|
} |
|
3794
|
|
|
if (!defined('PR_ROAMING_DATATYPES')) { |
|
3795
|
|
|
define('PR_ROAMING_DATATYPES', 0x7C060003); |
|
3796
|
|
|
} |
|
3797
|
|
|
if (!defined('PR_ROAMING_DICTIONARY')) { |
|
3798
|
|
|
define('PR_ROAMING_DICTIONARY', 0x7C070102); |
|
3799
|
|
|
} |
|
3800
|
|
|
if (!defined('PR_ROAMING_BINARYSTREAM')) { |
|
3801
|
|
|
define('PR_ROAMING_BINARYSTREAM', 0x7C090102); |
|
3802
|
|
|
} |
|
3803
|
|
|
if (!defined('PR_STORE_SLOWLINK')) { |
|
3804
|
|
|
define('PR_STORE_SLOWLINK', 0x7C0A000B); |
|
3805
|
|
|
} |
|
3806
|
|
|
if (!defined('PR_OSC_SYNC_ENABLEDONSERVER')) { |
|
3807
|
|
|
define('PR_OSC_SYNC_ENABLEDONSERVER', 0x7C24000B); |
|
3808
|
|
|
} |
|
3809
|
|
|
if (!defined('PR_FORCE_USE_ENTRYID_SERVER')) { |
|
3810
|
|
|
define('PR_FORCE_USE_ENTRYID_SERVER', 0x7CFE000B); |
|
3811
|
|
|
} |
|
3812
|
|
|
if (!defined('PR_PROFILE_MDB_DN')) { |
|
3813
|
|
|
define('PR_PROFILE_MDB_DN', 0x7CFF001E); |
|
3814
|
|
|
} |
|
3815
|
|
|
if (!defined('PR_FAV_AUTOSUBFOLDERS')) { |
|
3816
|
|
|
define('PR_FAV_AUTOSUBFOLDERS', 0x7D010003); |
|
3817
|
|
|
} |
|
3818
|
|
|
if (!defined('PR_PROCESSED')) { |
|
3819
|
|
|
define('PR_PROCESSED', 0x7D01000B); |
|
3820
|
|
|
} |
|
3821
|
|
|
if (!defined('PR_FAV_PARENT_SOURCE_KEY')) { |
|
3822
|
|
|
define('PR_FAV_PARENT_SOURCE_KEY', 0x7D020102); |
|
3823
|
|
|
} |
|
3824
|
|
|
if (!defined('PR_FAV_LEVEL_MASK')) { |
|
3825
|
|
|
define('PR_FAV_LEVEL_MASK', 0x7D030003); |
|
3826
|
|
|
} |
|
3827
|
|
|
if (!defined('PR_FAV_KNOWN_SUBS')) { |
|
3828
|
|
|
define('PR_FAV_KNOWN_SUBS', 0x7D040102); |
|
3829
|
|
|
} |
|
3830
|
|
|
if (!defined('PR_FAV_GUID_MAP')) { |
|
3831
|
|
|
define('PR_FAV_GUID_MAP', 0x7D050102); |
|
3832
|
|
|
} |
|
3833
|
|
|
if (!defined('PR_FAV_KNOWN_DELS_OLD')) { |
|
3834
|
|
|
define('PR_FAV_KNOWN_DELS_OLD', 0x7D060102); |
|
3835
|
|
|
} |
|
3836
|
|
|
if (!defined('PR_FAV_INHERIT_AUTO')) { |
|
3837
|
|
|
define('PR_FAV_INHERIT_AUTO', 0x7D070003); |
|
3838
|
|
|
} |
|
3839
|
|
|
if (!defined('PR_FAV_DEL_SUBS')) { |
|
3840
|
|
|
define('PR_FAV_DEL_SUBS', 0x7D080102); |
|
3841
|
|
|
} |
|
3842
|
|
|
if (!defined('PR_FAV_CONTAINER_CLASS')) { |
|
3843
|
|
|
define('PR_FAV_CONTAINER_CLASS', 0x7D09001E); |
|
3844
|
|
|
} |
|
3845
|
|
|
if (!defined('PR_EXCEPTION_REPLACETIME')) { |
|
3846
|
|
|
define('PR_EXCEPTION_REPLACETIME', 0x7FF90040); |
|
3847
|
|
|
} |
|
3848
|
|
|
if (!defined('PR_ATTACHMENT_LINKID')) { |
|
3849
|
|
|
define('PR_ATTACHMENT_LINKID', 0x7FFA0003); |
|
3850
|
|
|
} |
|
3851
|
|
|
if (!defined('PR_EXCEPTION_STARTTIME')) { |
|
3852
|
|
|
define('PR_EXCEPTION_STARTTIME', 0x7FFB0040); |
|
3853
|
|
|
} |
|
3854
|
|
|
if (!defined('PR_EXCEPTION_ENDTIME')) { |
|
3855
|
|
|
define('PR_EXCEPTION_ENDTIME', 0x7FFC0040); |
|
3856
|
|
|
} |
|
3857
|
|
|
if (!defined('PR_ATTACHMENT_FLAGS')) { |
|
3858
|
|
|
define('PR_ATTACHMENT_FLAGS', 0x7FFD0003); |
|
3859
|
|
|
} |
|
3860
|
|
|
if (!defined('PR_ATTACHMENT_HIDDEN')) { |
|
3861
|
|
|
define('PR_ATTACHMENT_HIDDEN', 0x7FFE000B); |
|
3862
|
|
|
} |
|
3863
|
|
|
if (!defined('PR_ATTACHMENT_CONTACTPHOTO')) { |
|
3864
|
|
|
define('PR_ATTACHMENT_CONTACTPHOTO', 0x7FFF000B); |
|
3865
|
|
|
} |
|
3866
|
|
|
if (!defined('PR_EMS_AB_FOLDER_PATHNAME')) { |
|
3867
|
|
|
define('PR_EMS_AB_FOLDER_PATHNAME', 0x8004001E); |
|
3868
|
|
|
} |
|
3869
|
|
|
if (!defined('PR_EMS_AB_MANAGER')) { |
|
3870
|
|
|
define('PR_EMS_AB_MANAGER', 0x8005000D); |
|
3871
|
|
|
} |
|
3872
|
|
|
if (!defined('PR_EMS_AB_MANAGER_T')) { |
|
3873
|
|
|
define('PR_EMS_AB_MANAGER_T', 0x8005001E); |
|
3874
|
|
|
} |
|
3875
|
|
|
if (!defined('PR_EMS_AB_HOME_MDB')) { |
|
3876
|
|
|
define('PR_EMS_AB_HOME_MDB', 0x8006001E); |
|
3877
|
|
|
} |
|
3878
|
|
|
if (!defined('PR_EMS_AB_HOME_MDB_A')) { |
|
3879
|
|
|
define('PR_EMS_AB_HOME_MDB_A', 0x8006001E); |
|
3880
|
|
|
} |
|
3881
|
|
|
if (!defined('PR_EMS_AB_IS_MEMBER_OF_DL')) { |
|
3882
|
|
|
define('PR_EMS_AB_IS_MEMBER_OF_DL', 0x8008001E); |
|
3883
|
|
|
} |
|
3884
|
|
|
if (!defined('PR_EMS_AB_MEMBER')) { |
|
3885
|
|
|
define('PR_EMS_AB_MEMBER', 0x8009000D); |
|
3886
|
|
|
} |
|
3887
|
|
|
if (!defined('PR_EMS_AB_OWNER')) { |
|
3888
|
|
|
define('PR_EMS_AB_OWNER', 0x800C0102); |
|
3889
|
|
|
} |
|
3890
|
|
|
if (!defined('PR_EMS_AB_OWNER_O')) { |
|
3891
|
|
|
define('PR_EMS_AB_OWNER_O', 0x800C000D); |
|
3892
|
|
|
} |
|
3893
|
|
|
if (!defined('PR_EMS_AB_REPORTS')) { |
|
3894
|
|
|
define('PR_EMS_AB_REPORTS', 0x800E000D); |
|
3895
|
|
|
} |
|
3896
|
|
|
if (!defined('PR_EMS_AB_REPORTS_MV')) { |
|
3897
|
|
|
define('PR_EMS_AB_REPORTS_MV', 0x800E1102); |
|
3898
|
|
|
} |
|
3899
|
|
|
if (!defined('PR_EMS_AB_PROXY_ADDRESSES')) { |
|
3900
|
|
|
define('PR_EMS_AB_PROXY_ADDRESSES', 0x800F101E); |
|
3901
|
|
|
} |
|
3902
|
|
|
if (!defined('PR_EMS_AB_PROXY_ADDRESSES_A')) { |
|
3903
|
|
|
define('PR_EMS_AB_PROXY_ADDRESSES_A', 0x800F101E); |
|
3904
|
|
|
} |
|
3905
|
|
|
if (!defined('PR_EMS_AB_PROXY_ADDRESSES_MV')) { |
|
3906
|
|
|
define('PR_EMS_AB_PROXY_ADDRESSES_MV', 0x800F101E); |
|
3907
|
|
|
} |
|
3908
|
|
|
if (!defined('PR_EMS_AB_TARGET_ADDRESS')) { |
|
3909
|
|
|
define('PR_EMS_AB_TARGET_ADDRESS', 0x8011001E); |
|
3910
|
|
|
} |
|
3911
|
|
|
if (!defined('PR_EMS_AB_PUBLIC_DELEGATES')) { |
|
3912
|
|
|
define('PR_EMS_AB_PUBLIC_DELEGATES', 0x8015000D); |
|
3913
|
|
|
} |
|
3914
|
|
|
if (!defined('PR_EMS_AB_OWNER_BL_O')) { |
|
3915
|
|
|
define('PR_EMS_AB_OWNER_BL_O', 0x8024000D); |
|
3916
|
|
|
} |
|
3917
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_1')) { |
|
3918
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_1', 0x802D001E); |
|
3919
|
|
|
} |
|
3920
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_2')) { |
|
3921
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_2', 0x802E001E); |
|
3922
|
|
|
} |
|
3923
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_3')) { |
|
3924
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_3', 0x802F001E); |
|
3925
|
|
|
} |
|
3926
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_4')) { |
|
3927
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_4', 0x8030001E); |
|
3928
|
|
|
} |
|
3929
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_5')) { |
|
3930
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_5', 0x8031001E); |
|
3931
|
|
|
} |
|
3932
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_6')) { |
|
3933
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_6', 0x8032001E); |
|
3934
|
|
|
} |
|
3935
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_7')) { |
|
3936
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_7', 0x8033001E); |
|
3937
|
|
|
} |
|
3938
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_8')) { |
|
3939
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_8', 0x8034001E); |
|
3940
|
|
|
} |
|
3941
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_9')) { |
|
3942
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_9', 0x8035001E); |
|
3943
|
|
|
} |
|
3944
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_10')) { |
|
3945
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_10', 0x8036001E); |
|
3946
|
|
|
} |
|
3947
|
|
|
if (!defined('PR_EMS_AB_OBJ_DIST_NAME')) { |
|
3948
|
|
|
define('PR_EMS_AB_OBJ_DIST_NAME', 0x803C001E); |
|
3949
|
|
|
} |
|
3950
|
|
|
if (!defined('PR_EMS_AB_DELIV_CONT_LENGTH')) { |
|
3951
|
|
|
define('PR_EMS_AB_DELIV_CONT_LENGTH', 0x806A0003); |
|
3952
|
|
|
} |
|
3953
|
|
|
if (!defined('PR_EMS_AB_DL_MEM_SUBMIT_PERMS_BL_O')) { |
|
3954
|
|
|
define('PR_EMS_AB_DL_MEM_SUBMIT_PERMS_BL_O', 0x8073000D); |
|
3955
|
|
|
} |
|
3956
|
|
|
if (!defined('PR_EMS_AB_NETWORK_ADDRESS')) { |
|
3957
|
|
|
define('PR_EMS_AB_NETWORK_ADDRESS', 0x8170101E); |
|
3958
|
|
|
} |
|
3959
|
|
|
if (!defined('PR_EMS_AB_NETWORK_ADDRESS_A')) { |
|
3960
|
|
|
define('PR_EMS_AB_NETWORK_ADDRESS_A', 0x8170101E); |
|
3961
|
|
|
} |
|
3962
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_11')) { |
|
3963
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_11', 0x8C57001E); |
|
3964
|
|
|
} |
|
3965
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_12')) { |
|
3966
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_12', 0x8C58001E); |
|
3967
|
|
|
} |
|
3968
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_13')) { |
|
3969
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_13', 0x8C59001E); |
|
3970
|
|
|
} |
|
3971
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_14')) { |
|
3972
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_14', 0x8C60001E); |
|
3973
|
|
|
} |
|
3974
|
|
|
if (!defined('PR_EMS_AB_EXTENSION_ATTRIBUTE_15')) { |
|
3975
|
|
|
define('PR_EMS_AB_EXTENSION_ATTRIBUTE_15', 0x8C61001E); |
|
3976
|
|
|
} |
|
3977
|
|
|
if (!defined('PR_EMS_AB_X509_CERT')) { |
|
3978
|
|
|
define('PR_EMS_AB_X509_CERT', 0x8C6A1102); |
|
3979
|
|
|
} |
|
3980
|
|
|
if (!defined('PR_EMS_AB_OBJECT_GUID')) { |
|
3981
|
|
|
define('PR_EMS_AB_OBJECT_GUID', 0x8C6D0102); |
|
3982
|
|
|
} |
|
3983
|
|
|
if (!defined('PR_EMS_AB_PHONETIC_GIVEN_NAME')) { |
|
3984
|
|
|
define('PR_EMS_AB_PHONETIC_GIVEN_NAME', 0x8C8E001E); |
|
3985
|
|
|
} |
|
3986
|
|
|
if (!defined('PR_EMS_AB_PHONETIC_SURNAME')) { |
|
3987
|
|
|
define('PR_EMS_AB_PHONETIC_SURNAME', 0x8C8F001E); |
|
3988
|
|
|
} |
|
3989
|
|
|
if (!defined('PR_EMS_AB_PHONETIC_DEPARTMENT_NAME')) { |
|
3990
|
|
|
define('PR_EMS_AB_PHONETIC_DEPARTMENT_NAME', 0x8C90001E); |
|
3991
|
|
|
} |
|
3992
|
|
|
if (!defined('PR_EMS_AB_PHONETIC_COMPANY_NAME')) { |
|
3993
|
|
|
define('PR_EMS_AB_PHONETIC_COMPANY_NAME', 0x8C91001E); |
|
3994
|
|
|
} |
|
3995
|
|
|
if (!defined('PR_EMS_AB_PHONETIC_DISPLAY_NAME')) { |
|
3996
|
|
|
define('PR_EMS_AB_PHONETIC_DISPLAY_NAME', 0x8C92001E); |
|
3997
|
|
|
} |
|
3998
|
|
|
if (!defined('PR_EMS_AB_PHONETIC_DISPLAY_NAME_A')) { |
|
3999
|
|
|
define('PR_EMS_AB_PHONETIC_DISPLAY_NAME_A', 0x8C92001E); |
|
4000
|
|
|
} |
|
4001
|
|
|
if (!defined('PR_EMS_AB_DISPLAY_TYPE_EX')) { |
|
4002
|
|
|
define('PR_EMS_AB_DISPLAY_TYPE_EX', 0x8C930003); |
|
4003
|
|
|
} |
|
4004
|
|
|
if (!defined('PR_EMS_AB_HAB_SHOW_IN_DEPARTMENTS')) { |
|
4005
|
|
|
define('PR_EMS_AB_HAB_SHOW_IN_DEPARTMENTS', 0x8C94000D); |
|
4006
|
|
|
} |
|
4007
|
|
|
if (!defined('PR_EMS_AB_ROOM_CONTAINERS')) { |
|
4008
|
|
|
define('PR_EMS_AB_ROOM_CONTAINERS', 0x8C96101E); |
|
4009
|
|
|
} |
|
4010
|
|
|
if (!defined('PR_EMS_AB_HAB_DEPARTMENT_MEMBERS')) { |
|
4011
|
|
|
define('PR_EMS_AB_HAB_DEPARTMENT_MEMBERS', 0x8C97000D); |
|
4012
|
|
|
} |
|
4013
|
|
|
if (!defined('PR_EMS_AB_HAB_ROOT_DEPARTMENT')) { |
|
4014
|
|
|
define('PR_EMS_AB_HAB_ROOT_DEPARTMENT', 0x8C98001E); |
|
4015
|
|
|
} |
|
4016
|
|
|
if (!defined('PR_EMS_AB_HAB_PARENT_DEPARTMENT')) { |
|
4017
|
|
|
define('PR_EMS_AB_HAB_PARENT_DEPARTMENT', 0x8C99000D); |
|
4018
|
|
|
} |
|
4019
|
|
|
if (!defined('PR_EMS_AB_HAB_CHILD_DEPARTMENTS')) { |
|
4020
|
|
|
define('PR_EMS_AB_HAB_CHILD_DEPARTMENTS', 0x8C9A000D); |
|
4021
|
|
|
} |
|
4022
|
|
|
if (!defined('PR_EMS_AB_THUMBNAIL_PHOTO')) { |
|
4023
|
|
|
define('PR_EMS_AB_THUMBNAIL_PHOTO', 0x8C9E0102); |
|
4024
|
|
|
} |
|
4025
|
|
|
if (!defined('PR_EMS_AB_HAB_SENIORITY_INDEX')) { |
|
4026
|
|
|
define('PR_EMS_AB_HAB_SENIORITY_INDEX', 0x8CA00003); |
|
4027
|
|
|
} |
|
4028
|
|
|
if (!defined('PR_EMS_AB_ORG_UNIT_ROOT_DN')) { |
|
4029
|
|
|
define('PR_EMS_AB_ORG_UNIT_ROOT_DN', 0x8CA8001E); |
|
4030
|
|
|
} |
|
4031
|
|
|
if (!defined('PR_EMS_AB_DL_SENDER_HINT_TRANSLATIONS')) { |
|
4032
|
|
|
define('PR_EMS_AB_DL_SENDER_HINT_TRANSLATIONS', 0x8CAC101E); |
|
4033
|
|
|
} |
|
4034
|
|
|
if (!defined('PR_EMS_AB_ENABLE_MODERATION')) { |
|
4035
|
|
|
define('PR_EMS_AB_ENABLE_MODERATION', 0x8CB5000B); |
|
4036
|
|
|
} |
|
4037
|
|
|
if (!defined('PR_EMS_AB_UM_SPOKEN_NAME')) { |
|
4038
|
|
|
define('PR_EMS_AB_UM_SPOKEN_NAME', 0x8CC20102); |
|
4039
|
|
|
} |
|
4040
|
|
|
if (!defined('PR_EMS_AB_AUTH_ORIG')) { |
|
4041
|
|
|
define('PR_EMS_AB_AUTH_ORIG', 0x8CD8000D); |
|
4042
|
|
|
} |
|
4043
|
|
|
if (!defined('PR_EMS_AB_UNAUTH_ORIG')) { |
|
4044
|
|
|
define('PR_EMS_AB_UNAUTH_ORIG', 0x8CD9000D); |
|
4045
|
|
|
} |
|
4046
|
|
|
if (!defined('PR_EMS_AB_DL_MEM_SUBMIT_PERMS')) { |
|
4047
|
|
|
define('PR_EMS_AB_DL_MEM_SUBMIT_PERMS', 0x8CDA000D); |
|
4048
|
|
|
} |
|
4049
|
|
|
if (!defined('PR_EMS_AB_DL_MEM_REJECT_PERMS')) { |
|
4050
|
|
|
define('PR_EMS_AB_DL_MEM_REJECT_PERMS', 0x8CDB000D); |
|
4051
|
|
|
} |
|
4052
|
|
|
if (!defined('PR_EMS_AB_HAB_IS_HIERARCHICAL_GROUP')) { |
|
4053
|
|
|
define('PR_EMS_AB_HAB_IS_HIERARCHICAL_GROUP', 0x8CDD000B); |
|
4054
|
|
|
} |
|
4055
|
|
|
if (!defined('PR_EMS_AB_DL_TOTAL_MEMBER_COUNT')) { |
|
4056
|
|
|
define('PR_EMS_AB_DL_TOTAL_MEMBER_COUNT', 0x8CE20003); |
|
4057
|
|
|
} |
|
4058
|
|
|
if (!defined('PR_EMS_AB_DL_EXTERNAL_MEMBER_COUNT')) { |
|
4059
|
|
|
define('PR_EMS_AB_DL_EXTERNAL_MEMBER_COUNT', 0x8CE30003); |
|
4060
|
|
|
} |
|
4061
|
|
|
if (!defined('PR_EMS_AB_IS_MASTER')) { |
|
4062
|
|
|
define('PR_EMS_AB_IS_MASTER', 0xFFFB000B); |
|
4063
|
|
|
} |
|
4064
|
|
|
if (!defined('PR_EMS_AB_PARENT_ENTRYID')) { |
|
4065
|
|
|
define('PR_EMS_AB_PARENT_ENTRYID', 0xFFFC0102); |
|
4066
|
|
|
} |
|
4067
|
|
|
if (!defined('PR_EMS_AB_CONTAINERID')) { |
|
4068
|
|
|
define('PR_EMS_AB_CONTAINERID', 0xFFFD0003); |
|
4069
|
|
|
} |
|
4070
|
|
|
if (!defined('PidLidCategories')) { |
|
4071
|
|
|
define('PidLidCategories', 0x00002328); |
|
4072
|
|
|
} |
|
4073
|
|
|
if (!defined('PidLidFileAs')) { |
|
4074
|
|
|
define('PidLidFileAs', 0x00008005); |
|
4075
|
|
|
} |
|
4076
|
|
|
if (!defined('PidLidHomeAddress')) { |
|
4077
|
|
|
define('PidLidHomeAddress', 0x0000801A); |
|
4078
|
|
|
} |
|
4079
|
|
|
if (!defined('PidLidBusinessAddress')) { |
|
4080
|
|
|
define('PidLidBusinessAddress', 0x0000801B); |
|
4081
|
|
|
} |
|
4082
|
|
|
if (!defined('PidLidOtherAddress')) { |
|
4083
|
|
|
define('PidLidOtherAddress', 0x0000801C); |
|
4084
|
|
|
} |
|
4085
|
|
|
if (!defined('PidLidMailingAdress')) { |
|
4086
|
|
|
define('PidLidMailingAdress', 0x00008022); |
|
4087
|
|
|
} |
|
4088
|
|
|
if (!defined('PidLidPostalAddressIndex')) { |
|
4089
|
|
|
define('PidLidPostalAddressIndex', 0x00008022); |
|
4090
|
|
|
} |
|
4091
|
|
|
if (!defined('PidLidBusinessCardDisplayDefinition')) { |
|
4092
|
|
|
define('PidLidBusinessCardDisplayDefinition', 0x00008040); |
|
4093
|
|
|
} |
|
4094
|
|
|
if (!defined('PidLidWorkAddressStreet')) { |
|
4095
|
|
|
define('PidLidWorkAddressStreet', 0x00008045); |
|
4096
|
|
|
} |
|
4097
|
|
|
if (!defined('PidLidWorkAddressCity')) { |
|
4098
|
|
|
define('PidLidWorkAddressCity', 0x00008046); |
|
4099
|
|
|
} |
|
4100
|
|
|
if (!defined('PidLidWorkAddressState')) { |
|
4101
|
|
|
define('PidLidWorkAddressState', 0x00008047); |
|
4102
|
|
|
} |
|
4103
|
|
|
if (!defined('PidLidWorkAddressPostalCode')) { |
|
4104
|
|
|
define('PidLidWorkAddressPostalCode', 0x00008048); |
|
4105
|
|
|
} |
|
4106
|
|
|
if (!defined('PidLidWorkAddressCountry')) { |
|
4107
|
|
|
define('PidLidWorkAddressCountry', 0x00008049); |
|
4108
|
|
|
} |
|
4109
|
|
|
if (!defined('PidLidWorkAddressPostOfficeBox')) { |
|
4110
|
|
|
define('PidLidWorkAddressPostOfficeBox', 0x0000804A); |
|
4111
|
|
|
} |
|
4112
|
|
|
if (!defined('PidLidContactUserField1')) { |
|
4113
|
|
|
define('PidLidContactUserField1', 0x0000804F); |
|
4114
|
|
|
} |
|
4115
|
|
|
if (!defined('PidLidContactUserField2')) { |
|
4116
|
|
|
define('PidLidContactUserField2', 0x00008050); |
|
4117
|
|
|
} |
|
4118
|
|
|
if (!defined('PidLidContactUserField3')) { |
|
4119
|
|
|
define('PidLidContactUserField3', 0x00008051); |
|
4120
|
|
|
} |
|
4121
|
|
|
if (!defined('PidLidContactUserField4')) { |
|
4122
|
|
|
define('PidLidContactUserField4', 0x00008052); |
|
4123
|
|
|
} |
|
4124
|
|
|
if (!defined('PidLidInstantMessagingAddress')) { |
|
4125
|
|
|
define('PidLidInstantMessagingAddress', 0x00008062); |
|
4126
|
|
|
} |
|
4127
|
|
|
if (!defined('PidLidEmail1DisplayName')) { |
|
4128
|
|
|
define('PidLidEmail1DisplayName', 0x00008080); |
|
4129
|
|
|
} |
|
4130
|
|
|
if (!defined('PidLidEmail1AddressType')) { |
|
4131
|
|
|
define('PidLidEmail1AddressType', 0x00008082); |
|
4132
|
|
|
} |
|
4133
|
|
|
if (!defined('PidLidEmail1EmailAddress')) { |
|
4134
|
|
|
define('PidLidEmail1EmailAddress', 0x00008083); |
|
4135
|
|
|
} |
|
4136
|
|
|
if (!defined('PidLidEmail2DisplayName')) { |
|
4137
|
|
|
define('PidLidEmail2DisplayName', 0x00008090); |
|
4138
|
|
|
} |
|
4139
|
|
|
if (!defined('PidLidEmail2AddressType')) { |
|
4140
|
|
|
define('PidLidEmail2AddressType', 0x00008092); |
|
4141
|
|
|
} |
|
4142
|
|
|
if (!defined('PidLidEmail2EmailAddress')) { |
|
4143
|
|
|
define('PidLidEmail2EmailAddress', 0x00008093); |
|
4144
|
|
|
} |
|
4145
|
|
|
if (!defined('PidLidEmail3DisplayName')) { |
|
4146
|
|
|
define('PidLidEmail3DisplayName', 0x000080A0); |
|
4147
|
|
|
} |
|
4148
|
|
|
if (!defined('PidLidEmail3AddressType')) { |
|
4149
|
|
|
define('PidLidEmail3AddressType', 0x000080A2); |
|
4150
|
|
|
} |
|
4151
|
|
|
if (!defined('PidLidEmail3EmailAddress')) { |
|
4152
|
|
|
define('PidLidEmail3EmailAddress', 0x000080A3); |
|
4153
|
|
|
} |
|
4154
|
|
|
if (!defined('PidLidFreeBusyLocation')) { |
|
4155
|
|
|
define('PidLidFreeBusyLocation', 0x000080D8); |
|
4156
|
|
|
} |
|
4157
|
|
|
if (!defined('PidLidTaskStatus')) { |
|
4158
|
|
|
define('PidLidTaskStatus', 0x00008101); |
|
4159
|
|
|
} |
|
4160
|
|
|
if (!defined('PidLidPercentComplete')) { |
|
4161
|
|
|
define('PidLidPercentComplete', 0x00008102); |
|
4162
|
|
|
} |
|
4163
|
|
|
if (!defined('PidLidTaskStartDate')) { |
|
4164
|
|
|
define('PidLidTaskStartDate', 0x00008104); |
|
4165
|
|
|
} |
|
4166
|
|
|
if (!defined('PidLidTaskDueDate')) { |
|
4167
|
|
|
define('PidLidTaskDueDate', 0x00008105); |
|
4168
|
|
|
} |
|
4169
|
|
|
if (!defined('PidLidTaskDateCompleted')) { |
|
4170
|
|
|
define('PidLidTaskDateCompleted', 0x0000810F); |
|
4171
|
|
|
} |
|
4172
|
|
|
if (!defined('PidLidTaskActualEffort')) { |
|
4173
|
|
|
define('PidLidTaskActualEffort', 0x00008110); |
|
4174
|
|
|
} |
|
4175
|
|
|
if (!defined('PidLidTaskEstimatedEffort')) { |
|
4176
|
|
|
define('PidLidTaskEstimatedEffort', 0x00008111); |
|
4177
|
|
|
} |
|
4178
|
|
|
if (!defined('PidLidTaskRecurrence')) { |
|
4179
|
|
|
define('PidLidTaskRecurrence', 0x00008116); |
|
4180
|
|
|
} |
|
4181
|
|
|
if (!defined('PidLidTaskComplete')) { |
|
4182
|
|
|
define('PidLidTaskComplete', 0x0000811C); |
|
4183
|
|
|
} |
|
4184
|
|
|
if (!defined('PidLidTaskOwner')) { |
|
4185
|
|
|
define('PidLidTaskOwner', 0x0000811F); |
|
4186
|
|
|
} |
|
4187
|
|
|
if (!defined('PidLidTaskFRecurring')) { |
|
4188
|
|
|
define('PidLidTaskFRecurring', 0x00008126); |
|
4189
|
|
|
} |
|
4190
|
|
|
if (!defined('PidLidSendMeetingAsIcal')) { |
|
4191
|
|
|
define('PidLidSendMeetingAsIcal', 0x00008200); |
|
4192
|
|
|
} |
|
4193
|
|
|
if (!defined('PidLidAppointmentSequence')) { |
|
4194
|
|
|
define('PidLidAppointmentSequence', 0x00008201); |
|
4195
|
|
|
} |
|
4196
|
|
|
if (!defined('PidLidBusyStatus')) { |
|
4197
|
|
|
define('PidLidBusyStatus', 0x00008205); |
|
4198
|
|
|
} |
|
4199
|
|
|
if (!defined('PidLidLocation')) { |
|
4200
|
|
|
define('PidLidLocation', 0x00008208); |
|
4201
|
|
|
} |
|
4202
|
|
|
if (!defined('PidLidAppointmentStartWhole')) { |
|
4203
|
|
|
define('PidLidAppointmentStartWhole', 0x0000820D); |
|
4204
|
|
|
} |
|
4205
|
|
|
if (!defined('PidLidAppointmentEndWhole')) { |
|
4206
|
|
|
define('PidLidAppointmentEndWhole', 0x0000820E); |
|
4207
|
|
|
} |
|
4208
|
|
|
if (!defined('PidLidAppointmentDuration')) { |
|
4209
|
|
|
define('PidLidAppointmentDuration', 0x00008213); |
|
4210
|
|
|
} |
|
4211
|
|
|
if (!defined('PidLidAppointmentSubType')) { |
|
4212
|
|
|
define('PidLidAppointmentSubType', 0x00008215); |
|
4213
|
|
|
} |
|
4214
|
|
|
if (!defined('PidLidAppointmentRecur')) { |
|
4215
|
|
|
define('PidLidAppointmentRecur', 0x00008216); |
|
4216
|
|
|
} |
|
4217
|
|
|
if (!defined('PidLidAppointmentStateFlags')) { |
|
4218
|
|
|
define('PidLidAppointmentStateFlags', 0x00008217); |
|
4219
|
|
|
} |
|
4220
|
|
|
if (!defined('PidLidResponseStatus')) { |
|
4221
|
|
|
define('PidLidResponseStatus', 0x00008218); |
|
4222
|
|
|
} |
|
4223
|
|
|
if (!defined('PidLidAppointmentReplyTime')) { |
|
4224
|
|
|
define('PidLidAppointmentReplyTime', 0x00008220); |
|
4225
|
|
|
} |
|
4226
|
|
|
if (!defined('PidLidRecurring')) { |
|
4227
|
|
|
define('PidLidRecurring', 0x00008223); |
|
4228
|
|
|
} |
|
4229
|
|
|
if (!defined('PidLidIntendedBusyStatus')) { |
|
4230
|
|
|
define('PidLidIntendedBusyStatus', 0x00008224); |
|
4231
|
|
|
} |
|
4232
|
|
|
if (!defined('PidLidExceptionReplaceTime')) { |
|
4233
|
|
|
define('PidLidExceptionReplaceTime', 0x00008228); |
|
4234
|
|
|
} |
|
4235
|
|
|
if (!defined('PidLidFInvited')) { |
|
4236
|
|
|
define('PidLidFInvited', 0x00008229); |
|
4237
|
|
|
} |
|
4238
|
|
|
if (!defined('PidLidAppointmentReplyName')) { |
|
4239
|
|
|
define('PidLidAppointmentReplyName', 0x00008230); |
|
4240
|
|
|
} |
|
4241
|
|
|
if (!defined('PidLidRecurrenceType')) { |
|
4242
|
|
|
define('PidLidRecurrenceType', 0x00008231); |
|
4243
|
|
|
} |
|
4244
|
|
|
if (!defined('PidLidRecurrencePattern')) { |
|
4245
|
|
|
define('PidLidRecurrencePattern', 0x00008232); |
|
4246
|
|
|
} |
|
4247
|
|
|
if (!defined('PidLidTimeZoneStruct')) { |
|
4248
|
|
|
define('PidLidTimeZoneStruct', 0x00008233); |
|
4249
|
|
|
} |
|
4250
|
|
|
if (!defined('PidLidTimeZoneDescription')) { |
|
4251
|
|
|
define('PidLidTimeZoneDescription', 0x00008234); |
|
4252
|
|
|
} |
|
4253
|
|
|
if (!defined('PidLidClipStart')) { |
|
4254
|
|
|
define('PidLidClipStart', 0x00008235); |
|
4255
|
|
|
} |
|
4256
|
|
|
if (!defined('PidLidClipEnd')) { |
|
4257
|
|
|
define('PidLidClipEnd', 0x00008236); |
|
4258
|
|
|
} |
|
4259
|
|
|
if (!defined('PidLidAllAttendeesString')) { |
|
4260
|
|
|
define('PidLidAllAttendeesString', 0x00008238); |
|
4261
|
|
|
} |
|
4262
|
|
|
if (!defined('PidLidToAttendeesString')) { |
|
4263
|
|
|
define('PidLidToAttendeesString', 0x0000823B); |
|
4264
|
|
|
} |
|
4265
|
|
|
if (!defined('PidLidCcAttendeesString')) { |
|
4266
|
|
|
define('PidLidCcAttendeesString', 0x0000823C); |
|
4267
|
|
|
} |
|
4268
|
|
|
if (!defined('PidLidAppointmentProposedStartWhole')) { |
|
4269
|
|
|
define('PidLidAppointmentProposedStartWhole', 0x00008250); |
|
4270
|
|
|
} |
|
4271
|
|
|
if (!defined('PidLidAppointmentProposedEndWhole')) { |
|
4272
|
|
|
define('PidLidAppointmentProposedEndWhole', 0x00008251); |
|
4273
|
|
|
} |
|
4274
|
|
|
if (!defined('PidLidAppointmentCounterProposal')) { |
|
4275
|
|
|
define('PidLidAppointmentCounterProposal', 0x00008257); |
|
4276
|
|
|
} |
|
4277
|
|
|
if (!defined('PidLidAppointmentNotAllowPropose')) { |
|
4278
|
|
|
define('PidLidAppointmentNotAllowPropose', 0x0000825A); |
|
4279
|
|
|
} |
|
4280
|
|
|
if (!defined('PidLidAppointmentTimeZoneDefinitionStartDisplay')) { |
|
4281
|
|
|
define('PidLidAppointmentTimeZoneDefinitionStartDisplay', 0x0000825E); |
|
4282
|
|
|
} |
|
4283
|
|
|
if (!defined('PidLidAppointmentTimeZoneDefinitionEndDisplay')) { |
|
4284
|
|
|
define('PidLidAppointmentTimeZoneDefinitionEndDisplay', 0x0000825F); |
|
4285
|
|
|
} |
|
4286
|
|
|
if (!defined('PidLidAppointmentTimeZoneDefinitionRecur')) { |
|
4287
|
|
|
define('PidLidAppointmentTimeZoneDefinitionRecur', 0x00008260); |
|
4288
|
|
|
} |
|
4289
|
|
|
if (!defined('PidLidAttendeeCriticalChange')) { |
|
4290
|
|
|
define('PidLidAttendeeCriticalChange', 0x00000001); |
|
4291
|
|
|
} |
|
4292
|
|
|
if (!defined('PidLidWhere')) { |
|
4293
|
|
|
define('PidLidWhere', 0x00000002); |
|
4294
|
|
|
} |
|
4295
|
|
|
if (!defined('PidLidGlobalObjectId')) { |
|
4296
|
|
|
define('PidLidGlobalObjectId', 0x00000003); |
|
4297
|
|
|
} |
|
4298
|
|
|
if (!defined('PidLidIsSilent')) { |
|
4299
|
|
|
define('PidLidIsSilent', 0x00000004); |
|
4300
|
|
|
} |
|
4301
|
|
|
if (!defined('PidLidIsRecurring')) { |
|
4302
|
|
|
define('PidLidIsRecurring', 0x00000005); |
|
4303
|
|
|
} |
|
4304
|
|
|
if (!defined('PidLidIsException')) { |
|
4305
|
|
|
define('PidLidIsException', 0x0000000A); |
|
4306
|
|
|
} |
|
4307
|
|
|
if (!defined('PidLidTimeZone')) { |
|
4308
|
|
|
define('PidLidTimeZone', 0x0000000C); |
|
4309
|
|
|
} |
|
4310
|
|
|
if (!defined('PidLidStartRecurrenceTime')) { |
|
4311
|
|
|
define('PidLidStartRecurrenceTime', 0x0000000E); |
|
4312
|
|
|
} |
|
4313
|
|
|
if (!defined('PidLidMonthOfYearMask')) { |
|
4314
|
|
|
define('PidLidMonthOfYearMask', 0x00000017); |
|
4315
|
|
|
} |
|
4316
|
|
|
if (!defined('PidLidOwnerCriticalChange')) { |
|
4317
|
|
|
define('PidLidOwnerCriticalChange', 0x0000001A); |
|
4318
|
|
|
} |
|
4319
|
|
|
if (!defined('PidLidCleanGlobalObjectId')) { |
|
4320
|
|
|
define('PidLidCleanGlobalObjectId', 0x00000023); |
|
4321
|
|
|
} |
|
4322
|
|
|
if (!defined('PidLidMeetingType')) { |
|
4323
|
|
|
define('PidLidMeetingType', 0x00000026); |
|
4324
|
|
|
} |
|
4325
|
|
|
if (!defined('PidLidReminderDelta')) { |
|
4326
|
|
|
define('PidLidReminderDelta', 0x00008501); |
|
4327
|
|
|
} |
|
4328
|
|
|
if (!defined('PidLidReminderTime')) { |
|
4329
|
|
|
define('PidLidReminderTime', 0x00008502); |
|
4330
|
|
|
} |
|
4331
|
|
|
if (!defined('PidLidReminderSet')) { |
|
4332
|
|
|
define('PidLidReminderSet', 0x00008503); |
|
4333
|
|
|
} |
|
4334
|
|
|
if (!defined('PidLidPrivate')) { |
|
4335
|
|
|
define('PidLidPrivate', 0x00008506); |
|
4336
|
|
|
} |
|
4337
|
|
|
if (!defined('PidLidSideEffects')) { |
|
4338
|
|
|
define('PidLidSideEffects', 0x00008510); |
|
4339
|
|
|
} |
|
4340
|
|
|
if (!defined('PidLidSmartNoAttach')) { |
|
4341
|
|
|
define('PidLidSmartNoAttach', 0x00008514); |
|
4342
|
|
|
} |
|
4343
|
|
|
if (!defined('PidLidCommonStart')) { |
|
4344
|
|
|
define('PidLidCommonStart', 0x00008516); |
|
4345
|
|
|
} |
|
4346
|
|
|
if (!defined('PidLidCommonEnd')) { |
|
4347
|
|
|
define('PidLidCommonEnd', 0x00008517); |
|
4348
|
|
|
} |
|
4349
|
|
|
if (!defined('PidLidTaskMode')) { |
|
4350
|
|
|
define('PidLidTaskMode', 0x00008518); |
|
4351
|
|
|
} |
|
4352
|
|
|
if (!defined('PidLidFlagRequest')) { |
|
4353
|
|
|
define('PidLidFlagRequest', 0x00008530); |
|
4354
|
|
|
} |
|
4355
|
|
|
if (!defined('PidLidMileage')) { |
|
4356
|
|
|
define('PidLidMileage', 0x00008534); |
|
4357
|
|
|
} |
|
4358
|
|
|
if (!defined('PidLidBilling')) { |
|
4359
|
|
|
define('PidLidBilling', 0x00008535); |
|
4360
|
|
|
} |
|
4361
|
|
|
if (!defined('PidLidCompanies')) { |
|
4362
|
|
|
define('PidLidCompanies', 0x00008539); |
|
4363
|
|
|
} |
|
4364
|
|
|
if (!defined('PidLidReminderSignalTime')) { |
|
4365
|
|
|
define('PidLidReminderSignalTime', 0x00008560); |
|
4366
|
|
|
} |
|
4367
|
|
|
if (!defined('PidLidToDoTitle')) { |
|
4368
|
|
|
define('PidLidToDoTitle', 0x000085A4); |
|
4369
|
|
|
} |
|
4370
|
|
|
if (!defined('PidLidInfoPathFromName')) { |
|
4371
|
|
|
define('PidLidInfoPathFromName', 0x000085B1); |
|
4372
|
|
|
} |
|
4373
|
|
|
if (!defined('PidLidClassified')) { |
|
4374
|
|
|
define('PidLidClassified', 0x000085B5); |
|
4375
|
|
|
} |
|
4376
|
|
|
if (!defined('PidLidClassification')) { |
|
4377
|
|
|
define('PidLidClassification', 0x000085B6); |
|
4378
|
|
|
} |
|
4379
|
|
|
if (!defined('PidLidClassificationDescription')) { |
|
4380
|
|
|
define('PidLidClassificationDescription', 0x000085B7); |
|
4381
|
|
|
} |
|
4382
|
|
|
if (!defined('PidLidClassificationGuid')) { |
|
4383
|
|
|
define('PidLidClassificationGuid', 0x000085B8); |
|
4384
|
|
|
} |
|
4385
|
|
|
if (!defined('PidLidClassificationKeep')) { |
|
4386
|
|
|
define('PidLidClassificationKeep', 0x000085BA); |
|
4387
|
|
|
} |
|
4388
|
|
|
if (!defined('ecSuccess')) { |
|
4389
|
|
|
define('ecSuccess', 0x00000000); |
|
4390
|
|
|
} |
|
4391
|
|
|
if (!defined('MAPI_E_UNBINDSUCCESS')) { |
|
4392
|
|
|
define('MAPI_E_UNBINDSUCCESS', 0x00000001); |
|
4393
|
|
|
} |
|
4394
|
|
|
if (!defined('MAPI_E_USER_ABORT')) { |
|
4395
|
|
|
define('MAPI_E_USER_ABORT', 0x00000001); |
|
4396
|
|
|
} |
|
4397
|
|
|
if (!defined('MAPI_E_FAILURE')) { |
|
4398
|
|
|
define('MAPI_E_FAILURE', 0x00000002); |
|
4399
|
|
|
} |
|
4400
|
|
|
if (!defined('MAPI_E_LOGON_FAILURE')) { |
|
4401
|
|
|
define('MAPI_E_LOGON_FAILURE', 0x00000003); |
|
4402
|
|
|
} |
|
4403
|
|
|
if (!defined('MAPI_E_DISK_FULL')) { |
|
4404
|
|
|
define('MAPI_E_DISK_FULL', 0x00000004); |
|
4405
|
|
|
} |
|
4406
|
|
|
if (!defined('MAPI_E_INSUFFICIENT_MEMORY')) { |
|
4407
|
|
|
define('MAPI_E_INSUFFICIENT_MEMORY', 0x00000005); |
|
4408
|
|
|
} |
|
4409
|
|
|
if (!defined('MAPI_E_ACCESS_DENIED')) { |
|
4410
|
|
|
define('MAPI_E_ACCESS_DENIED', 0x00000006); |
|
4411
|
|
|
} |
|
4412
|
|
|
if (!defined('MAPI_E_TOO_MANY_SESSIONS')) { |
|
4413
|
|
|
define('MAPI_E_TOO_MANY_SESSIONS', 0x00000008); |
|
4414
|
|
|
} |
|
4415
|
|
|
if (!defined('MAPI_E_TOO_MANY_FILES')) { |
|
4416
|
|
|
define('MAPI_E_TOO_MANY_FILES', 0x00000009); |
|
4417
|
|
|
} |
|
4418
|
|
|
if (!defined('MAPI_E_TOO_MANY_RECIPIENTS')) { |
|
4419
|
|
|
define('MAPI_E_TOO_MANY_RECIPIENTS', 0x0000000A); |
|
4420
|
|
|
} |
|
4421
|
|
|
if (!defined('MAPI_E_ATTACHMENT_NOT_FOUND')) { |
|
4422
|
|
|
define('MAPI_E_ATTACHMENT_NOT_FOUND', 0x0000000B); |
|
4423
|
|
|
} |
|
4424
|
|
|
if (!defined('MAPI_E_ATTACHMENT_OPEN_FAILURE')) { |
|
4425
|
|
|
define('MAPI_E_ATTACHMENT_OPEN_FAILURE', 0x0000000C); |
|
4426
|
|
|
} |
|
4427
|
|
|
if (!defined('MAPI_E_ATTACHMENT_WRITE_FAILURE')) { |
|
4428
|
|
|
define('MAPI_E_ATTACHMENT_WRITE_FAILURE', 0x0000000D); |
|
4429
|
|
|
} |
|
4430
|
|
|
if (!defined('MAPI_E_UNKNOWN_RECIPIENT')) { |
|
4431
|
|
|
define('MAPI_E_UNKNOWN_RECIPIENT', 0x0000000E); |
|
4432
|
|
|
} |
|
4433
|
|
|
if (!defined('MAPI_E_BAD_RECIPTYPE')) { |
|
4434
|
|
|
define('MAPI_E_BAD_RECIPTYPE', 0x0000000F); |
|
4435
|
|
|
} |
|
4436
|
|
|
if (!defined('MAPI_E_NO_MESSAGES')) { |
|
4437
|
|
|
define('MAPI_E_NO_MESSAGES', 0x00000010); |
|
4438
|
|
|
} |
|
4439
|
|
|
if (!defined('MAPI_E_INVALID_MESSAGE')) { |
|
4440
|
|
|
define('MAPI_E_INVALID_MESSAGE', 0x00000011); |
|
4441
|
|
|
} |
|
4442
|
|
|
if (!defined('MAPI_E_TEXT_TOO_LARGE')) { |
|
4443
|
|
|
define('MAPI_E_TEXT_TOO_LARGE', 0x00000012); |
|
4444
|
|
|
} |
|
4445
|
|
|
if (!defined('MAPI_E_INVALID_SESSION')) { |
|
4446
|
|
|
define('MAPI_E_INVALID_SESSION', 0x00000013); |
|
4447
|
|
|
} |
|
4448
|
|
|
if (!defined('MAPI_E_TYPE_NOT_SUPPORTED')) { |
|
4449
|
|
|
define('MAPI_E_TYPE_NOT_SUPPORTED', 0x00000014); |
|
4450
|
|
|
} |
|
4451
|
|
|
if (!defined('MAPI_E_AMBIGUOUS_RECIPIENT')) { |
|
4452
|
|
|
define('MAPI_E_AMBIGUOUS_RECIPIENT', 0x00000015); |
|
4453
|
|
|
} |
|
4454
|
|
|
if (!defined('MAPI_E_MESSAGE_IN_USE')) { |
|
4455
|
|
|
define('MAPI_E_MESSAGE_IN_USE', 0x00000016); |
|
4456
|
|
|
} |
|
4457
|
|
|
if (!defined('MAPI_E_NETWORK_FAILURE')) { |
|
4458
|
|
|
define('MAPI_E_NETWORK_FAILURE', 0x00000017); |
|
4459
|
|
|
} |
|
4460
|
|
|
if (!defined('MAPI_E_INVALID_EDITFIELDS')) { |
|
4461
|
|
|
define('MAPI_E_INVALID_EDITFIELDS', 0x00000018); |
|
4462
|
|
|
} |
|
4463
|
|
|
if (!defined('MAPI_E_INVALID_RECIPS')) { |
|
4464
|
|
|
define('MAPI_E_INVALID_RECIPS', 0x00000019); |
|
4465
|
|
|
} |
|
4466
|
|
|
if (!defined('MAPI_E_NOT_SUPPORTED')) { |
|
4467
|
|
|
define('MAPI_E_NOT_SUPPORTED', 0x0000001A); |
|
4468
|
|
|
} |
|
4469
|
|
|
if (!defined('ecJetError')) { |
|
4470
|
|
|
define('ecJetError', 0x000003EA); |
|
4471
|
|
|
} |
|
4472
|
|
|
if (!defined('ecUnknownUser')) { |
|
4473
|
|
|
define('ecUnknownUser', 0x000003EB); |
|
4474
|
|
|
} |
|
4475
|
|
|
if (!defined('ecExiting')) { |
|
4476
|
|
|
define('ecExiting', 0x000003ED); |
|
4477
|
|
|
} |
|
4478
|
|
|
if (!defined('ecBadConfig')) { |
|
4479
|
|
|
define('ecBadConfig', 0x000003EE); |
|
4480
|
|
|
} |
|
4481
|
|
|
if (!defined('ecUnknownCodePage')) { |
|
4482
|
|
|
define('ecUnknownCodePage', 0x000003EF); |
|
4483
|
|
|
} |
|
4484
|
|
|
if (!defined('ecServerOOM')) { |
|
4485
|
|
|
define('ecServerOOM', 0x000003F0); |
|
4486
|
|
|
} |
|
4487
|
|
|
if (!defined('ecLoginPerm')) { |
|
4488
|
|
|
define('ecLoginPerm', 0x000003F2); |
|
4489
|
|
|
} |
|
4490
|
|
|
if (!defined('ecDatabaseRolledBack')) { |
|
4491
|
|
|
define('ecDatabaseRolledBack', 0x000003F3); |
|
4492
|
|
|
} |
|
4493
|
|
|
if (!defined('ecDatabaseCopiedError')) { |
|
4494
|
|
|
define('ecDatabaseCopiedError', 0x000003F4); |
|
4495
|
|
|
} |
|
4496
|
|
|
if (!defined('ecAuditNotAllowed')) { |
|
4497
|
|
|
define('ecAuditNotAllowed', 0x000003F5); |
|
4498
|
|
|
} |
|
4499
|
|
|
if (!defined('ecZombieUser')) { |
|
4500
|
|
|
define('ecZombieUser', 0x000003F6); |
|
4501
|
|
|
} |
|
4502
|
|
|
if (!defined('ecUnconvertableACL')) { |
|
4503
|
|
|
define('ecUnconvertableACL', 0x000003F7); |
|
4504
|
|
|
} |
|
4505
|
|
|
if (!defined('ecNoFreeJses')) { |
|
4506
|
|
|
define('ecNoFreeJses', 0x0000044C); |
|
4507
|
|
|
} |
|
4508
|
|
|
if (!defined('ecDifferentJses')) { |
|
4509
|
|
|
define('ecDifferentJses', 0x0000044D); |
|
4510
|
|
|
} |
|
4511
|
|
|
if (!defined('ecFileRemove')) { |
|
4512
|
|
|
define('ecFileRemove', 0x0000044F); |
|
4513
|
|
|
} |
|
4514
|
|
|
if (!defined('ecParameterOverflow')) { |
|
4515
|
|
|
define('ecParameterOverflow', 0x00000450); |
|
4516
|
|
|
} |
|
4517
|
|
|
if (!defined('ecBadVersion')) { |
|
4518
|
|
|
define('ecBadVersion', 0x00000451); |
|
4519
|
|
|
} |
|
4520
|
|
|
if (!defined('ecTooManyCols')) { |
|
4521
|
|
|
define('ecTooManyCols', 0x00000452); |
|
4522
|
|
|
} |
|
4523
|
|
|
if (!defined('ecHaveMore')) { |
|
4524
|
|
|
define('ecHaveMore', 0x00000453); |
|
4525
|
|
|
} |
|
4526
|
|
|
if (!defined('ecDatabaseError')) { |
|
4527
|
|
|
define('ecDatabaseError', 0x00000454); |
|
4528
|
|
|
} |
|
4529
|
|
|
if (!defined('ecIndexNameTooBig')) { |
|
4530
|
|
|
define('ecIndexNameTooBig', 0x00000455); |
|
4531
|
|
|
} |
|
4532
|
|
|
if (!defined('ecUnsupportedProp')) { |
|
4533
|
|
|
define('ecUnsupportedProp', 0x00000456); |
|
4534
|
|
|
} |
|
4535
|
|
|
if (!defined('ecMsgNotSaved')) { |
|
4536
|
|
|
define('ecMsgNotSaved', 0x00000457); |
|
4537
|
|
|
} |
|
4538
|
|
|
if (!defined('ecUnpubNotif')) { |
|
4539
|
|
|
define('ecUnpubNotif', 0x00000459); |
|
4540
|
|
|
} |
|
4541
|
|
|
if (!defined('ecDifferentRoot')) { |
|
4542
|
|
|
define('ecDifferentRoot', 0x0000045B); |
|
4543
|
|
|
} |
|
4544
|
|
|
if (!defined('ecBadFolderName')) { |
|
4545
|
|
|
define('ecBadFolderName', 0x0000045C); |
|
4546
|
|
|
} |
|
4547
|
|
|
if (!defined('ecAttachOpen')) { |
|
4548
|
|
|
define('ecAttachOpen', 0x0000045D); |
|
4549
|
|
|
} |
|
4550
|
|
|
if (!defined('ecInvClpsState')) { |
|
4551
|
|
|
define('ecInvClpsState', 0x0000045E); |
|
4552
|
|
|
} |
|
4553
|
|
|
if (!defined('ecSkipMyChildren')) { |
|
4554
|
|
|
define('ecSkipMyChildren', 0x0000045F); |
|
4555
|
|
|
} |
|
4556
|
|
|
if (!defined('ecSearchFolder')) { |
|
4557
|
|
|
define('ecSearchFolder', 0x00000460); |
|
4558
|
|
|
} |
|
4559
|
|
|
if (!defined('ecNotSearchFolder')) { |
|
4560
|
|
|
define('ecNotSearchFolder', 0x00000461); |
|
4561
|
|
|
} |
|
4562
|
|
|
if (!defined('ecFolderSetReceive')) { |
|
4563
|
|
|
define('ecFolderSetReceive', 0x00000462); |
|
4564
|
|
|
} |
|
4565
|
|
|
if (!defined('ecNoReceiveFolder')) { |
|
4566
|
|
|
define('ecNoReceiveFolder', 0x00000463); |
|
4567
|
|
|
} |
|
4568
|
|
|
if (!defined('ecNoDelSubmitMsg')) { |
|
4569
|
|
|
define('ecNoDelSubmitMsg', 0x00000465); |
|
4570
|
|
|
} |
|
4571
|
|
|
if (!defined('ecInvalidRecips')) { |
|
4572
|
|
|
define('ecInvalidRecips', 0x00000467); |
|
4573
|
|
|
} |
|
4574
|
|
|
if (!defined('ecNoReplicaHere')) { |
|
4575
|
|
|
define('ecNoReplicaHere', 0x00000468); |
|
4576
|
|
|
} |
|
4577
|
|
|
if (!defined('ecNoReplicaAvailable')) { |
|
4578
|
|
|
define('ecNoReplicaAvailable', 0x00000469); |
|
4579
|
|
|
} |
|
4580
|
|
|
if (!defined('ecPublicMDB')) { |
|
4581
|
|
|
define('ecPublicMDB', 0x0000046A); |
|
4582
|
|
|
} |
|
4583
|
|
|
if (!defined('ecNotPublicMDB')) { |
|
4584
|
|
|
define('ecNotPublicMDB', 0x0000046B); |
|
4585
|
|
|
} |
|
4586
|
|
|
if (!defined('ecRecordNotFound')) { |
|
4587
|
|
|
define('ecRecordNotFound', 0x0000046C); |
|
4588
|
|
|
} |
|
4589
|
|
|
if (!defined('ecReplConflict')) { |
|
4590
|
|
|
define('ecReplConflict', 0x0000046D); |
|
4591
|
|
|
} |
|
4592
|
|
|
if (!defined('ecFxBufferOverrun')) { |
|
4593
|
|
|
define('ecFxBufferOverrun', 0x00000470); |
|
4594
|
|
|
} |
|
4595
|
|
|
if (!defined('ecFxBufferEmpty')) { |
|
4596
|
|
|
define('ecFxBufferEmpty', 0x00000471); |
|
4597
|
|
|
} |
|
4598
|
|
|
if (!defined('ecFxPartialValue')) { |
|
4599
|
|
|
define('ecFxPartialValue', 0x00000472); |
|
4600
|
|
|
} |
|
4601
|
|
|
if (!defined('ecFxNoRoom')) { |
|
4602
|
|
|
define('ecFxNoRoom', 0x00000473); |
|
4603
|
|
|
} |
|
4604
|
|
|
if (!defined('ecMaxTimeExpired')) { |
|
4605
|
|
|
define('ecMaxTimeExpired', 0x00000474); |
|
4606
|
|
|
} |
|
4607
|
|
|
if (!defined('ecDstError')) { |
|
4608
|
|
|
define('ecDstError', 0x00000475); |
|
4609
|
|
|
} |
|
4610
|
|
|
if (!defined('ecMDBNotInit')) { |
|
4611
|
|
|
define('ecMDBNotInit', 0x00000476); |
|
4612
|
|
|
} |
|
4613
|
|
|
if (!defined('ecWrongServer')) { |
|
4614
|
|
|
define('ecWrongServer', 0x00000478); |
|
4615
|
|
|
} |
|
4616
|
|
|
if (!defined('ecBufferTooSmall')) { |
|
4617
|
|
|
define('ecBufferTooSmall', 0x0000047D); |
|
4618
|
|
|
} |
|
4619
|
|
|
if (!defined('ecRequiresRefResolve')) { |
|
4620
|
|
|
define('ecRequiresRefResolve', 0x0000047E); |
|
4621
|
|
|
} |
|
4622
|
|
|
if (!defined('ecServerPaused')) { |
|
4623
|
|
|
define('ecServerPaused', 0x0000047F); |
|
4624
|
|
|
} |
|
4625
|
|
|
if (!defined('ecServerBusy')) { |
|
4626
|
|
|
define('ecServerBusy', 0x00000480); |
|
4627
|
|
|
} |
|
4628
|
|
|
if (!defined('ecNoSuchLogon')) { |
|
4629
|
|
|
define('ecNoSuchLogon', 0x00000481); |
|
4630
|
|
|
} |
|
4631
|
|
|
if (!defined('ecLoadLibFailed')) { |
|
4632
|
|
|
define('ecLoadLibFailed', 0x00000482); |
|
4633
|
|
|
} |
|
4634
|
|
|
if (!defined('ecObjAlreadyConfig')) { |
|
4635
|
|
|
define('ecObjAlreadyConfig', 0x00000483); |
|
4636
|
|
|
} |
|
4637
|
|
|
if (!defined('ecObjNotConfig')) { |
|
4638
|
|
|
define('ecObjNotConfig', 0x00000484); |
|
4639
|
|
|
} |
|
4640
|
|
|
if (!defined('ecDataLoss')) { |
|
4641
|
|
|
define('ecDataLoss', 0x00000485); |
|
4642
|
|
|
} |
|
4643
|
|
|
if (!defined('ecMaxSendThreadExceeded')) { |
|
4644
|
|
|
define('ecMaxSendThreadExceeded', 0x00000488); |
|
4645
|
|
|
} |
|
4646
|
|
|
if (!defined('ecFxErrorMarker')) { |
|
4647
|
|
|
define('ecFxErrorMarker', 0x00000489); |
|
4648
|
|
|
} |
|
4649
|
|
|
if (!defined('ecNoFreeJtabs')) { |
|
4650
|
|
|
define('ecNoFreeJtabs', 0x0000048A); |
|
4651
|
|
|
} |
|
4652
|
|
|
if (!defined('ecNotPrivateMDB')) { |
|
4653
|
|
|
define('ecNotPrivateMDB', 0x0000048B); |
|
4654
|
|
|
} |
|
4655
|
|
|
if (!defined('ecIsintegMDB')) { |
|
4656
|
|
|
define('ecIsintegMDB', 0x0000048C); |
|
4657
|
|
|
} |
|
4658
|
|
|
if (!defined('ecRecoveryMDBMismatch')) { |
|
4659
|
|
|
define('ecRecoveryMDBMismatch', 0x0000048D); |
|
4660
|
|
|
} |
|
4661
|
|
|
if (!defined('ecTableMayNotBeDeleted')) { |
|
4662
|
|
|
define('ecTableMayNotBeDeleted', 0x0000048E); |
|
4663
|
|
|
} |
|
4664
|
|
|
if (!defined('ecSearchFolderScopeViolation')) { |
|
4665
|
|
|
define('ecSearchFolderScopeViolation', 0x00000490); |
|
4666
|
|
|
} |
|
4667
|
|
|
if (!defined('ecRpcRegisterIf')) { |
|
4668
|
|
|
define('ecRpcRegisterIf', 0x000004B1); |
|
4669
|
|
|
} |
|
4670
|
|
|
if (!defined('ecRpcListen')) { |
|
4671
|
|
|
define('ecRpcListen', 0x000004B2); |
|
4672
|
|
|
} |
|
4673
|
|
|
if (!defined('ecRpcFormat')) { |
|
4674
|
|
|
define('ecRpcFormat', 0x000004B6); |
|
4675
|
|
|
} |
|
4676
|
|
|
if (!defined('ecNoCopyTo')) { |
|
4677
|
|
|
define('ecNoCopyTo', 0x000004B7); |
|
4678
|
|
|
} |
|
4679
|
|
|
if (!defined('ecNullObject')) { |
|
4680
|
|
|
define('ecNullObject', 0x000004B9); |
|
4681
|
|
|
} |
|
4682
|
|
|
if (!defined('ecRpcAuthentication')) { |
|
4683
|
|
|
define('ecRpcAuthentication', 0x000004BC); |
|
4684
|
|
|
} |
|
4685
|
|
|
if (!defined('ecRpcBadAuthenticationLevel')) { |
|
4686
|
|
|
define('ecRpcBadAuthenticationLevel', 0x000004BD); |
|
4687
|
|
|
} |
|
4688
|
|
|
if (!defined('ecNullCommentRestriction')) { |
|
4689
|
|
|
define('ecNullCommentRestriction', 0x000004BE); |
|
4690
|
|
|
} |
|
4691
|
|
|
if (!defined('ecRulesLoadError')) { |
|
4692
|
|
|
define('ecRulesLoadError', 0x000004CC); |
|
4693
|
|
|
} |
|
4694
|
|
|
if (!defined('ecRulesDelivErr')) { |
|
4695
|
|
|
define('ecRulesDelivErr', 0x000004CD); |
|
4696
|
|
|
} |
|
4697
|
|
|
if (!defined('ecRulesParsingErr')) { |
|
4698
|
|
|
define('ecRulesParsingErr', 0x000004CE); |
|
4699
|
|
|
} |
|
4700
|
|
|
if (!defined('ecRulesCreateDaeErr')) { |
|
4701
|
|
|
define('ecRulesCreateDaeErr', 0x000004CF); |
|
4702
|
|
|
} |
|
4703
|
|
|
if (!defined('ecRulesCreateDamErr')) { |
|
4704
|
|
|
define('ecRulesCreateDamErr', 0x000004D0); |
|
4705
|
|
|
} |
|
4706
|
|
|
if (!defined('ecRulesNoMoveCopyFolder')) { |
|
4707
|
|
|
define('ecRulesNoMoveCopyFolder', 0x000004D1); |
|
4708
|
|
|
} |
|
4709
|
|
|
if (!defined('ecRulesNoFolderRights')) { |
|
4710
|
|
|
define('ecRulesNoFolderRights', 0x000004D2); |
|
4711
|
|
|
} |
|
4712
|
|
|
if (!defined('ecMessageTooBig')) { |
|
4713
|
|
|
define('ecMessageTooBig', 0x000004D4); |
|
4714
|
|
|
} |
|
4715
|
|
|
if (!defined('ecFormNotValid')) { |
|
4716
|
|
|
define('ecFormNotValid', 0x000004D5); |
|
4717
|
|
|
} |
|
4718
|
|
|
if (!defined('ecNotAuthorized')) { |
|
4719
|
|
|
define('ecNotAuthorized', 0x000004D6); |
|
4720
|
|
|
} |
|
4721
|
|
|
if (!defined('ecDeleteMessage')) { |
|
4722
|
|
|
define('ecDeleteMessage', 0x000004D7); |
|
4723
|
|
|
} |
|
4724
|
|
|
if (!defined('ecBounceMessage')) { |
|
4725
|
|
|
define('ecBounceMessage', 0x000004D8); |
|
4726
|
|
|
} |
|
4727
|
|
|
if (!defined('ecQuotaExceeded')) { |
|
4728
|
|
|
define('ecQuotaExceeded', 0x000004D9); |
|
4729
|
|
|
} |
|
4730
|
|
|
if (!defined('ecMaxSubmissionExceeded')) { |
|
4731
|
|
|
define('ecMaxSubmissionExceeded', 0x000004DA); |
|
4732
|
|
|
} |
|
4733
|
|
|
if (!defined('ecMaxAttachmentExceeded')) { |
|
4734
|
|
|
define('ecMaxAttachmentExceeded', 0x000004DB); |
|
4735
|
|
|
} |
|
4736
|
|
|
if (!defined('ecSendAsDenied')) { |
|
4737
|
|
|
define('ecSendAsDenied', 0x000004DC); |
|
4738
|
|
|
} |
|
4739
|
|
|
if (!defined('ecShutoffQuotaExceeded')) { |
|
4740
|
|
|
define('ecShutoffQuotaExceeded', 0x000004DD); |
|
4741
|
|
|
} |
|
4742
|
|
|
if (!defined('ecMaxObjsExceeded')) { |
|
4743
|
|
|
define('ecMaxObjsExceeded', 0x000004DE); |
|
4744
|
|
|
} |
|
4745
|
|
|
if (!defined('ecClientVerDisallowed')) { |
|
4746
|
|
|
define('ecClientVerDisallowed', 0x000004DF); |
|
4747
|
|
|
} |
|
4748
|
|
|
if (!defined('ecRpcHttpDisallowed')) { |
|
4749
|
|
|
define('ecRpcHttpDisallowed', 0x000004E0); |
|
4750
|
|
|
} |
|
4751
|
|
|
if (!defined('ecCachedModeRequired')) { |
|
4752
|
|
|
define('ecCachedModeRequired', 0x000004E1); |
|
4753
|
|
|
} |
|
4754
|
|
|
if (!defined('ecFolderNotCleanedUp')) { |
|
4755
|
|
|
define('ecFolderNotCleanedUp', 0x000004E3); |
|
4756
|
|
|
} |
|
4757
|
|
|
if (!defined('ecFmtError')) { |
|
4758
|
|
|
define('ecFmtError', 0x000004ED); |
|
4759
|
|
|
} |
|
4760
|
|
|
if (!defined('ecNotExpanded')) { |
|
4761
|
|
|
define('ecNotExpanded', 0x000004F7); |
|
4762
|
|
|
} |
|
4763
|
|
|
if (!defined('ecNotCollapsed')) { |
|
4764
|
|
|
define('ecNotCollapsed', 0x000004F8); |
|
4765
|
|
|
} |
|
4766
|
|
|
if (!defined('ecLeaf')) { |
|
4767
|
|
|
define('ecLeaf', 0x000004F9); |
|
4768
|
|
|
} |
|
4769
|
|
|
if (!defined('ecUnregisteredNamedProp')) { |
|
4770
|
|
|
define('ecUnregisteredNamedProp', 0x000004FA); |
|
4771
|
|
|
} |
|
4772
|
|
|
if (!defined('ecFolderDisabled')) { |
|
4773
|
|
|
define('ecFolderDisabled', 0x000004FB); |
|
4774
|
|
|
} |
|
4775
|
|
|
if (!defined('ecDomainError')) { |
|
4776
|
|
|
define('ecDomainError', 0x000004FC); |
|
4777
|
|
|
} |
|
4778
|
|
|
if (!defined('ecNoCreateRight')) { |
|
4779
|
|
|
define('ecNoCreateRight', 0x000004FF); |
|
4780
|
|
|
} |
|
4781
|
|
|
if (!defined('ecPublicRoot')) { |
|
4782
|
|
|
define('ecPublicRoot', 0x00000500); |
|
4783
|
|
|
} |
|
4784
|
|
|
if (!defined('ecNoReadRight')) { |
|
4785
|
|
|
define('ecNoReadRight', 0x00000501); |
|
4786
|
|
|
} |
|
4787
|
|
|
if (!defined('ecNoCreateSubfolderRight')) { |
|
4788
|
|
|
define('ecNoCreateSubfolderRight', 0x00000502); |
|
4789
|
|
|
} |
|
4790
|
|
|
if (!defined('ecDstNullObject')) { |
|
4791
|
|
|
define('ecDstNullObject', 0x00000503); |
|
4792
|
|
|
} |
|
4793
|
|
|
if (!defined('ecMsgCycle')) { |
|
4794
|
|
|
define('ecMsgCycle', 0x00000504); |
|
4795
|
|
|
} |
|
4796
|
|
|
if (!defined('ecTooManyRecips')) { |
|
4797
|
|
|
define('ecTooManyRecips', 0x00000505); |
|
4798
|
|
|
} |
|
4799
|
|
|
if (!defined('ecVirusScanInProgress')) { |
|
4800
|
|
|
define('ecVirusScanInProgress', 0x0000050A); |
|
4801
|
|
|
} |
|
4802
|
|
|
if (!defined('ecVirusDetected')) { |
|
4803
|
|
|
define('ecVirusDetected', 0x0000050B); |
|
4804
|
|
|
} |
|
4805
|
|
|
if (!defined('ecMailboxInTransit')) { |
|
4806
|
|
|
define('ecMailboxInTransit', 0x0000050C); |
|
4807
|
|
|
} |
|
4808
|
|
|
if (!defined('ecBackupInProgress')) { |
|
4809
|
|
|
define('ecBackupInProgress', 0x0000050D); |
|
4810
|
|
|
} |
|
4811
|
|
|
if (!defined('ecVirusMessageDeleted')) { |
|
4812
|
|
|
define('ecVirusMessageDeleted', 0x0000050E); |
|
4813
|
|
|
} |
|
4814
|
|
|
if (!defined('ecInvalidBackupSequence')) { |
|
4815
|
|
|
define('ecInvalidBackupSequence', 0x0000050F); |
|
4816
|
|
|
} |
|
4817
|
|
|
if (!defined('ecInvalidBackupType')) { |
|
4818
|
|
|
define('ecInvalidBackupType', 0x00000510); |
|
4819
|
|
|
} |
|
4820
|
|
|
if (!defined('ecTooManyBackupsInProgress')) { |
|
4821
|
|
|
define('ecTooManyBackupsInProgress', 0x00000511); |
|
4822
|
|
|
} |
|
4823
|
|
|
if (!defined('ecRestoreInProgress')) { |
|
4824
|
|
|
define('ecRestoreInProgress', 0x00000512); |
|
4825
|
|
|
} |
|
4826
|
|
|
if (!defined('ecDuplicateObject')) { |
|
4827
|
|
|
define('ecDuplicateObject', 0x00000579); |
|
4828
|
|
|
} |
|
4829
|
|
|
if (!defined('ecObjectNotFound')) { |
|
4830
|
|
|
define('ecObjectNotFound', 0x0000057A); |
|
4831
|
|
|
} |
|
4832
|
|
|
if (!defined('ecFixupReplyRule')) { |
|
4833
|
|
|
define('ecFixupReplyRule', 0x0000057B); |
|
4834
|
|
|
} |
|
4835
|
|
|
if (!defined('ecTemplateNotFound')) { |
|
4836
|
|
|
define('ecTemplateNotFound', 0x0000057C); |
|
4837
|
|
|
} |
|
4838
|
|
|
if (!defined('ecRuleException')) { |
|
4839
|
|
|
define('ecRuleException', 0x0000057D); |
|
4840
|
|
|
} |
|
4841
|
|
|
if (!defined('ecDSNoSuchObject')) { |
|
4842
|
|
|
define('ecDSNoSuchObject', 0x0000057E); |
|
4843
|
|
|
} |
|
4844
|
|
|
if (!defined('ecMessageAlreadyTombstoned')) { |
|
4845
|
|
|
define('ecMessageAlreadyTombstoned', 0x0000057F); |
|
4846
|
|
|
} |
|
4847
|
|
|
if (!defined('ecRequiresRWTransaction')) { |
|
4848
|
|
|
define('ecRequiresRWTransaction', 0x00000596); |
|
4849
|
|
|
} |
|
4850
|
|
|
if (!defined('ecPaused')) { |
|
4851
|
|
|
define('ecPaused', 0x0000060E); |
|
4852
|
|
|
} |
|
4853
|
|
|
if (!defined('ecNotPaused')) { |
|
4854
|
|
|
define('ecNotPaused', 0x0000060F); |
|
4855
|
|
|
} |
|
4856
|
|
|
if (!defined('ecWrongMailbox')) { |
|
4857
|
|
|
define('ecWrongMailbox', 0x00000648); |
|
4858
|
|
|
} |
|
4859
|
|
|
if (!defined('ecChgPassword')) { |
|
4860
|
|
|
define('ecChgPassword', 0x0000064C); |
|
4861
|
|
|
} |
|
4862
|
|
|
if (!defined('ecPwdExpired')) { |
|
4863
|
|
|
define('ecPwdExpired', 0x0000064D); |
|
4864
|
|
|
} |
|
4865
|
|
|
if (!defined('ecInvWkstn')) { |
|
4866
|
|
|
define('ecInvWkstn', 0x0000064E); |
|
4867
|
|
|
} |
|
4868
|
|
|
if (!defined('ecInvLogonHrs')) { |
|
4869
|
|
|
define('ecInvLogonHrs', 0x0000064F); |
|
4870
|
|
|
} |
|
4871
|
|
|
if (!defined('ecAcctDisabled')) { |
|
4872
|
|
|
define('ecAcctDisabled', 0x00000650); |
|
4873
|
|
|
} |
|
4874
|
|
|
if (!defined('ecRuleVersion')) { |
|
4875
|
|
|
define('ecRuleVersion', 0x000006A4); |
|
4876
|
|
|
} |
|
4877
|
|
|
if (!defined('ecRuleFormat')) { |
|
4878
|
|
|
define('ecRuleFormat', 0x000006A5); |
|
4879
|
|
|
} |
|
4880
|
|
|
if (!defined('ecRuleSendAsDenied')) { |
|
4881
|
|
|
define('ecRuleSendAsDenied', 0x000006A6); |
|
4882
|
|
|
} |
|
4883
|
|
|
if (!defined('ecNoServerSupport')) { |
|
4884
|
|
|
define('ecNoServerSupport', 0x000006B9); |
|
4885
|
|
|
} |
|
4886
|
|
|
if (!defined('ecLockTimedOut')) { |
|
4887
|
|
|
define('ecLockTimedOut', 0x000006BA); |
|
4888
|
|
|
} |
|
4889
|
|
|
if (!defined('ecObjectLocked')) { |
|
4890
|
|
|
define('ecObjectLocked', 0x000006BB); |
|
4891
|
|
|
} |
|
4892
|
|
|
if (!defined('ecInvalidLockNamespace')) { |
|
4893
|
|
|
define('ecInvalidLockNamespace', 0x000006BD); |
|
4894
|
|
|
} |
|
4895
|
|
|
if (!defined('RPC_X_BAD_STUB_DATA')) { |
|
4896
|
|
|
define('RPC_X_BAD_STUB_DATA', 0x000006F7); |
|
4897
|
|
|
} |
|
4898
|
|
|
if (!defined('ecMessageDeleted')) { |
|
4899
|
|
|
define('ecMessageDeleted', 0x000007D6); |
|
4900
|
|
|
} |
|
4901
|
|
|
if (!defined('ecProtocolDisabled')) { |
|
4902
|
|
|
define('ecProtocolDisabled', 0x000007D8); |
|
4903
|
|
|
} |
|
4904
|
|
|
if (!defined('ecClearTextLogonDisabled')) { |
|
4905
|
|
|
define('ecClearTextLogonDisabled', 0x000007D9); |
|
4906
|
|
|
} |
|
4907
|
|
|
if (!defined('ecRejected')) { |
|
4908
|
|
|
define('ecRejected', 0x000007EE); |
|
4909
|
|
|
} |
|
4910
|
|
|
if (!defined('ecAmbiguousAlias')) { |
|
4911
|
|
|
define('ecAmbiguousAlias', 0x0000089A); |
|
4912
|
|
|
} |
|
4913
|
|
|
if (!defined('ecUnknownMailbox')) { |
|
4914
|
|
|
define('ecUnknownMailbox', 0x0000089B); |
|
4915
|
|
|
} |
|
4916
|
|
|
if (!defined('ecExpReserved')) { |
|
4917
|
|
|
define('ecExpReserved', 0x000008FC); |
|
4918
|
|
|
} |
|
4919
|
|
|
if (!defined('ecExpParseDepth')) { |
|
4920
|
|
|
define('ecExpParseDepth', 0x000008FD); |
|
4921
|
|
|
} |
|
4922
|
|
|
if (!defined('ecExpFuncArgType')) { |
|
4923
|
|
|
define('ecExpFuncArgType', 0x000008FE); |
|
4924
|
|
|
} |
|
4925
|
|
|
if (!defined('ecExpSyntax')) { |
|
4926
|
|
|
define('ecExpSyntax', 0x000008FF); |
|
4927
|
|
|
} |
|
4928
|
|
|
if (!defined('ecExpBadStrToken')) { |
|
4929
|
|
|
define('ecExpBadStrToken', 0x00000900); |
|
4930
|
|
|
} |
|
4931
|
|
|
if (!defined('ecExpBadColToken')) { |
|
4932
|
|
|
define('ecExpBadColToken', 0x00000901); |
|
4933
|
|
|
} |
|
4934
|
|
|
if (!defined('ecExpTypeMismatch')) { |
|
4935
|
|
|
define('ecExpTypeMismatch', 0x00000902); |
|
4936
|
|
|
} |
|
4937
|
|
|
if (!defined('ecExpOpNotSupported')) { |
|
4938
|
|
|
define('ecExpOpNotSupported', 0x00000903); |
|
4939
|
|
|
} |
|
4940
|
|
|
if (!defined('ecExpDivByZero')) { |
|
4941
|
|
|
define('ecExpDivByZero', 0x00000904); |
|
4942
|
|
|
} |
|
4943
|
|
|
if (!defined('ecExpUnaryArgType')) { |
|
4944
|
|
|
define('ecExpUnaryArgType', 0x00000905); |
|
4945
|
|
|
} |
|
4946
|
|
|
if (!defined('ecNotLocked')) { |
|
4947
|
|
|
define('ecNotLocked', 0x00000960); |
|
4948
|
|
|
} |
|
4949
|
|
|
if (!defined('ecClientEvent')) { |
|
4950
|
|
|
define('ecClientEvent', 0x00000961); |
|
4951
|
|
|
} |
|
4952
|
|
|
if (!defined('ecCorruptEvent')) { |
|
4953
|
|
|
define('ecCorruptEvent', 0x00000965); |
|
4954
|
|
|
} |
|
4955
|
|
|
if (!defined('ecCorruptWatermark')) { |
|
4956
|
|
|
define('ecCorruptWatermark', 0x00000966); |
|
4957
|
|
|
} |
|
4958
|
|
|
if (!defined('ecEventError')) { |
|
4959
|
|
|
define('ecEventError', 0x00000967); |
|
4960
|
|
|
} |
|
4961
|
|
|
if (!defined('ecWatermarkError')) { |
|
4962
|
|
|
define('ecWatermarkError', 0x00000968); |
|
4963
|
|
|
} |
|
4964
|
|
|
if (!defined('ecNonCanonicalACL')) { |
|
4965
|
|
|
define('ecNonCanonicalACL', 0x00000969); |
|
4966
|
|
|
} |
|
4967
|
|
|
if (!defined('ecMailboxDisabled')) { |
|
4968
|
|
|
define('ecMailboxDisabled', 0x0000096C); |
|
4969
|
|
|
} |
|
4970
|
|
|
if (!defined('ecRulesFolderOverQuota')) { |
|
4971
|
|
|
define('ecRulesFolderOverQuota', 0x0000096D); |
|
4972
|
|
|
} |
|
4973
|
|
|
if (!defined('ecADUnavailable')) { |
|
4974
|
|
|
define('ecADUnavailable', 0x0000096E); |
|
4975
|
|
|
} |
|
4976
|
|
|
if (!defined('ecADError')) { |
|
4977
|
|
|
define('ecADError', 0x0000096F); |
|
4978
|
|
|
} |
|
4979
|
|
|
if (!defined('ecNotEncrypted')) { |
|
4980
|
|
|
define('ecNotEncrypted', 0x00000970); |
|
4981
|
|
|
} |
|
4982
|
|
|
if (!defined('ecADNotFound')) { |
|
4983
|
|
|
define('ecADNotFound', 0x00000971); |
|
4984
|
|
|
} |
|
4985
|
|
|
if (!defined('ecADPropertyError')) { |
|
4986
|
|
|
define('ecADPropertyError', 0x00000972); |
|
4987
|
|
|
} |
|
4988
|
|
|
if (!defined('ecRpcServerTooBusy')) { |
|
4989
|
|
|
define('ecRpcServerTooBusy', 0x00000973); |
|
4990
|
|
|
} |
|
4991
|
|
|
if (!defined('ecRpcOutOfMemory')) { |
|
4992
|
|
|
define('ecRpcOutOfMemory', 0x00000974); |
|
4993
|
|
|
} |
|
4994
|
|
|
if (!defined('ecRpcServerOutOfMemory')) { |
|
4995
|
|
|
define('ecRpcServerOutOfMemory', 0x00000975); |
|
4996
|
|
|
} |
|
4997
|
|
|
if (!defined('ecRpcOutOfResources')) { |
|
4998
|
|
|
define('ecRpcOutOfResources', 0x00000976); |
|
4999
|
|
|
} |
|
5000
|
|
|
if (!defined('ecRpcServerUnavailable')) { |
|
5001
|
|
|
define('ecRpcServerUnavailable', 0x00000977); |
|
5002
|
|
|
} |
|
5003
|
|
|
if (!defined('ecSecureSubmitError')) { |
|
5004
|
|
|
define('ecSecureSubmitError', 0x0000097A); |
|
5005
|
|
|
} |
|
5006
|
|
|
if (!defined('ecEventsDeleted')) { |
|
5007
|
|
|
define('ecEventsDeleted', 0x0000097C); |
|
5008
|
|
|
} |
|
5009
|
|
|
if (!defined('ecSubsystemStopping')) { |
|
5010
|
|
|
define('ecSubsystemStopping', 0x0000097D); |
|
5011
|
|
|
} |
|
5012
|
|
|
if (!defined('ecSAUnavailable')) { |
|
5013
|
|
|
define('ecSAUnavailable', 0x0000097E); |
|
5014
|
|
|
} |
|
5015
|
|
|
if (!defined('ecCIStopping')) { |
|
5016
|
|
|
define('ecCIStopping', 0x00000A28); |
|
5017
|
|
|
} |
|
5018
|
|
|
if (!defined('ecFxInvalidState')) { |
|
5019
|
|
|
define('ecFxInvalidState', 0x00000A29); |
|
5020
|
|
|
} |
|
5021
|
|
|
if (!defined('ecFxUnexpectedMarker')) { |
|
5022
|
|
|
define('ecFxUnexpectedMarker', 0x00000A2A); |
|
5023
|
|
|
} |
|
5024
|
|
|
if (!defined('ecDuplicateDelivery')) { |
|
5025
|
|
|
define('ecDuplicateDelivery', 0x00000A2B); |
|
5026
|
|
|
} |
|
5027
|
|
|
if (!defined('ecConditionViolation')) { |
|
5028
|
|
|
define('ecConditionViolation', 0x00000A2C); |
|
5029
|
|
|
} |
|
5030
|
|
|
if (!defined('ecMaxPoolExceeded')) { |
|
5031
|
|
|
define('ecMaxPoolExceeded', 0x00000A2D); |
|
5032
|
|
|
} |
|
5033
|
|
|
if (!defined('ecRpcInvalidHandle')) { |
|
5034
|
|
|
define('ecRpcInvalidHandle', 0x00000A2E); |
|
5035
|
|
|
} |
|
5036
|
|
|
if (!defined('ecEventNotFound')) { |
|
5037
|
|
|
define('ecEventNotFound', 0x00000A2F); |
|
5038
|
|
|
} |
|
5039
|
|
|
if (!defined('ecPropNotPromoted')) { |
|
5040
|
|
|
define('ecPropNotPromoted', 0x00000A30); |
|
5041
|
|
|
} |
|
5042
|
|
|
if (!defined('ecLowMdbSpace')) { |
|
5043
|
|
|
define('ecLowMdbSpace', 0x00000A31); |
|
5044
|
|
|
} |
|
5045
|
|
|
if (!defined('MAPI_W_NO_SERVICE')) { |
|
5046
|
|
|
define('MAPI_W_NO_SERVICE', 0x00040203); |
|
5047
|
|
|
} |
|
5048
|
|
|
if (!defined('MAPI_W_ERRORS_RETURNED')) { |
|
5049
|
|
|
define('MAPI_W_ERRORS_RETURNED', 0x00040380); |
|
5050
|
|
|
} |
|
5051
|
|
|
if (!defined('MAPI_W_POSITION_CHANGED')) { |
|
5052
|
|
|
define('MAPI_W_POSITION_CHANGED', 0x00040481); |
|
5053
|
|
|
} |
|
5054
|
|
|
if (!defined('MAPI_W_APPROX_COUNT')) { |
|
5055
|
|
|
define('MAPI_W_APPROX_COUNT', 0x00040482); |
|
5056
|
|
|
} |
|
5057
|
|
|
if (!defined('MAPI_W_CANCEL_MESSAGE')) { |
|
5058
|
|
|
define('MAPI_W_CANCEL_MESSAGE', 0x00040580); |
|
5059
|
|
|
} |
|
5060
|
|
|
if (!defined('MAPI_W_PARTIAL_COMPLETION')) { |
|
5061
|
|
|
define('MAPI_W_PARTIAL_COMPLETION', 0x00040680); |
|
5062
|
|
|
} |
|
5063
|
|
|
if (!defined('SYNC_W_PROGRESS')) { |
|
5064
|
|
|
define('SYNC_W_PROGRESS', 0x00040820); |
|
5065
|
|
|
} |
|
5066
|
|
|
if (!defined('SYNC_W_CLIENT_CHANGE_NEWER')) { |
|
5067
|
|
|
define('SYNC_W_CLIENT_CHANGE_NEWER', 0x00040821); |
|
5068
|
|
|
} |
|
5069
|
|
|
if (!defined('MAPI_E_INTERFACE_NOT_SUPPORTED')) { |
|
5070
|
|
|
define('MAPI_E_INTERFACE_NOT_SUPPORTED', 0x80004002); |
|
5071
|
|
|
} |
|
5072
|
|
|
if (!defined('MAPI_E_CALL_FAILED')) { |
|
5073
|
|
|
define('MAPI_E_CALL_FAILED', 0x80004005); |
|
5074
|
|
|
} |
|
5075
|
|
|
if (!defined('SYNC_E_ERROR')) { |
|
5076
|
|
|
define('SYNC_E_ERROR', 0x80004005); |
|
5077
|
|
|
} |
|
5078
|
|
|
if (!defined('MAPI_E_NO_SUPPORT')) { |
|
5079
|
|
|
define('MAPI_E_NO_SUPPORT', 0x80040102); |
|
5080
|
|
|
} |
|
5081
|
|
|
if (!defined('MAPI_E_BAD_CHARWIDTH')) { |
|
5082
|
|
|
define('MAPI_E_BAD_CHARWIDTH', 0x80040103); |
|
5083
|
|
|
} |
|
5084
|
|
|
if (!defined('MAPI_E_STRING_TOO_LONG')) { |
|
5085
|
|
|
define('MAPI_E_STRING_TOO_LONG', 0x80040105); |
|
5086
|
|
|
} |
|
5087
|
|
|
if (!defined('MAPI_E_UNKNOWN_FLAGS')) { |
|
5088
|
|
|
define('MAPI_E_UNKNOWN_FLAGS', 0x80040106); |
|
5089
|
|
|
} |
|
5090
|
|
|
if (!defined('SYNC_E_UNKNOWN_FLAGS')) { |
|
5091
|
|
|
define('SYNC_E_UNKNOWN_FLAGS', 0x80040106); |
|
5092
|
|
|
} |
|
5093
|
|
|
if (!defined('MAPI_E_INVALID_ENTRYID')) { |
|
5094
|
|
|
define('MAPI_E_INVALID_ENTRYID', 0x80040107); |
|
5095
|
|
|
} |
|
5096
|
|
|
if (!defined('MAPI_E_INVALID_OBJECT')) { |
|
5097
|
|
|
define('MAPI_E_INVALID_OBJECT', 0x80040108); |
|
5098
|
|
|
} |
|
5099
|
|
|
if (!defined('MAPI_E_OBJECT_CHANGED')) { |
|
5100
|
|
|
define('MAPI_E_OBJECT_CHANGED', 0x80040109); |
|
5101
|
|
|
} |
|
5102
|
|
|
if (!defined('MAPI_E_OBJECT_DELETED')) { |
|
5103
|
|
|
define('MAPI_E_OBJECT_DELETED', 0x8004010A); |
|
5104
|
|
|
} |
|
5105
|
|
|
if (!defined('MAPI_E_BUSY')) { |
|
5106
|
|
|
define('MAPI_E_BUSY', 0x8004010B); |
|
5107
|
|
|
} |
|
5108
|
|
|
if (!defined('MAPI_E_NOT_ENOUGH_DISK')) { |
|
5109
|
|
|
define('MAPI_E_NOT_ENOUGH_DISK', 0x8004010D); |
|
5110
|
|
|
} |
|
5111
|
|
|
if (!defined('MAPI_E_NOT_ENOUGH_RESOURCES')) { |
|
5112
|
|
|
define('MAPI_E_NOT_ENOUGH_RESOURCES', 0x8004010E); |
|
5113
|
|
|
} |
|
5114
|
|
|
if (!defined('MAPI_E_NOT_FOUND')) { |
|
5115
|
|
|
define('MAPI_E_NOT_FOUND', 0x8004010F); |
|
5116
|
|
|
} |
|
5117
|
|
|
if (!defined('MAPI_E_VERSION')) { |
|
5118
|
|
|
define('MAPI_E_VERSION', 0x80040110); |
|
5119
|
|
|
} |
|
5120
|
|
|
if (!defined('MAPI_E_LOGON_FAILED')) { |
|
5121
|
|
|
define('MAPI_E_LOGON_FAILED', 0x80040111); |
|
5122
|
|
|
} |
|
5123
|
|
|
if (!defined('MAPI_E_SESSION_LIMIT')) { |
|
5124
|
|
|
define('MAPI_E_SESSION_LIMIT', 0x80040112); |
|
5125
|
|
|
} |
|
5126
|
|
|
if (!defined('MAPI_E_USER_CANCEL')) { |
|
5127
|
|
|
define('MAPI_E_USER_CANCEL', 0x80040113); |
|
5128
|
|
|
} |
|
5129
|
|
|
if (!defined('MAPI_E_UNABLE_TO_ABORT')) { |
|
5130
|
|
|
define('MAPI_E_UNABLE_TO_ABORT', 0x80040114); |
|
5131
|
|
|
} |
|
5132
|
|
|
if (!defined('ecRpcFailed')) { |
|
5133
|
|
|
define('ecRpcFailed', 0x80040115); |
|
5134
|
|
|
} |
|
5135
|
|
|
if (!defined('MAPI_E_NETWORK_ERROR')) { |
|
5136
|
|
|
define('MAPI_E_NETWORK_ERROR', 0x80040115); |
|
5137
|
|
|
} |
|
5138
|
|
|
if (!defined('MAPI_E_DISK_ERROR')) { |
|
5139
|
|
|
define('MAPI_E_DISK_ERROR', 0x80040116); |
|
5140
|
|
|
} |
|
5141
|
|
|
if (!defined('ecWriteFault')) { |
|
5142
|
|
|
define('ecWriteFault', 0x80040116); |
|
5143
|
|
|
} |
|
5144
|
|
|
if (!defined('MAPI_E_TOO_COMPLEX')) { |
|
5145
|
|
|
define('MAPI_E_TOO_COMPLEX', 0x80040117); |
|
5146
|
|
|
} |
|
5147
|
|
|
if (!defined('MAPI_E_BAD_COLUMN')) { |
|
5148
|
|
|
define('MAPI_E_BAD_COLUMN', 0x80040118); |
|
5149
|
|
|
} |
|
5150
|
|
|
if (!defined('MAPI_E_EXTENDED_ERROR')) { |
|
5151
|
|
|
define('MAPI_E_EXTENDED_ERROR', 0x80040119); |
|
5152
|
|
|
} |
|
5153
|
|
|
if (!defined('MAPI_E_COMPUTED')) { |
|
5154
|
|
|
define('MAPI_E_COMPUTED', 0x8004011A); |
|
5155
|
|
|
} |
|
5156
|
|
|
if (!defined('MAPI_E_CORRUPT_DATA')) { |
|
5157
|
|
|
define('MAPI_E_CORRUPT_DATA', 0x8004011B); |
|
5158
|
|
|
} |
|
5159
|
|
|
if (!defined('MAPI_E_UNCONFIGURED')) { |
|
5160
|
|
|
define('MAPI_E_UNCONFIGURED', 0x8004011C); |
|
5161
|
|
|
} |
|
5162
|
|
|
if (!defined('MAPI_E_FAILONEPROVIDER')) { |
|
5163
|
|
|
define('MAPI_E_FAILONEPROVIDER', 0x8004011D); |
|
5164
|
|
|
} |
|
5165
|
|
|
if (!defined('MAPI_E_UNKNOWN_CPID')) { |
|
5166
|
|
|
define('MAPI_E_UNKNOWN_CPID', 0x8004011E); |
|
5167
|
|
|
} |
|
5168
|
|
|
if (!defined('MAPI_E_UNKNOWN_LCID')) { |
|
5169
|
|
|
define('MAPI_E_UNKNOWN_LCID', 0x8004011F); |
|
5170
|
|
|
} |
|
5171
|
|
|
if (!defined('MAPI_E_PASSWORD_CHANGE_REQUIRED')) { |
|
5172
|
|
|
define('MAPI_E_PASSWORD_CHANGE_REQUIRED', 0x80040120); |
|
5173
|
|
|
} |
|
5174
|
|
|
if (!defined('MAPI_E_PASSWORD_EXPIRED')) { |
|
5175
|
|
|
define('MAPI_E_PASSWORD_EXPIRED', 0x80040121); |
|
5176
|
|
|
} |
|
5177
|
|
|
if (!defined('MAPI_E_INVALID_WORKSTATION_ACCOUNT')) { |
|
5178
|
|
|
define('MAPI_E_INVALID_WORKSTATION_ACCOUNT', 0x80040122); |
|
5179
|
|
|
} |
|
5180
|
|
|
if (!defined('MAPI_E_INVALID_ACCESS_TIME')) { |
|
5181
|
|
|
define('MAPI_E_INVALID_ACCESS_TIME', 0x80040123); |
|
5182
|
|
|
} |
|
5183
|
|
|
if (!defined('MAPI_E_ACCOUNT_DISABLED')) { |
|
5184
|
|
|
define('MAPI_E_ACCOUNT_DISABLED', 0x80040124); |
|
5185
|
|
|
} |
|
5186
|
|
|
if (!defined('MAPI_E_END_OF_SESSION')) { |
|
5187
|
|
|
define('MAPI_E_END_OF_SESSION', 0x80040200); |
|
5188
|
|
|
} |
|
5189
|
|
|
if (!defined('MAPI_E_UNKNOWN_ENTRYID')) { |
|
5190
|
|
|
define('MAPI_E_UNKNOWN_ENTRYID', 0x80040201); |
|
5191
|
|
|
} |
|
5192
|
|
|
if (!defined('MAPI_E_MISSING_REQUIRED_COLUMN')) { |
|
5193
|
|
|
define('MAPI_E_MISSING_REQUIRED_COLUMN', 0x80040202); |
|
5194
|
|
|
} |
|
5195
|
|
|
if (!defined('MAPI_E_BAD_VALUE')) { |
|
5196
|
|
|
define('MAPI_E_BAD_VALUE', 0x80040301); |
|
5197
|
|
|
} |
|
5198
|
|
|
if (!defined('MAPI_E_INVALID_TYPE')) { |
|
5199
|
|
|
define('MAPI_E_INVALID_TYPE', 0x80040302); |
|
5200
|
|
|
} |
|
5201
|
|
|
if (!defined('MAPI_E_TYPE_NO_SUPPORT')) { |
|
5202
|
|
|
define('MAPI_E_TYPE_NO_SUPPORT', 0x80040303); |
|
5203
|
|
|
} |
|
5204
|
|
|
if (!defined('MAPI_E_UNEXPECTED_TYPE')) { |
|
5205
|
|
|
define('MAPI_E_UNEXPECTED_TYPE', 0x80040304); |
|
5206
|
|
|
} |
|
5207
|
|
|
if (!defined('MAPI_E_TOO_BIG')) { |
|
5208
|
|
|
define('MAPI_E_TOO_BIG', 0x80040305); |
|
5209
|
|
|
} |
|
5210
|
|
|
if (!defined('MAPI_E_DECLINE_COPY')) { |
|
5211
|
|
|
define('MAPI_E_DECLINE_COPY', 0x80040306); |
|
5212
|
|
|
} |
|
5213
|
|
|
if (!defined('MAPI_E_UNEXPECTED_ID')) { |
|
5214
|
|
|
define('MAPI_E_UNEXPECTED_ID', 0x80040307); |
|
5215
|
|
|
} |
|
5216
|
|
|
if (!defined('MAPI_E_UNABLE_TO_COMPLETE')) { |
|
5217
|
|
|
define('MAPI_E_UNABLE_TO_COMPLETE', 0x80040400); |
|
5218
|
|
|
} |
|
5219
|
|
|
if (!defined('MAPI_E_TIMEOUT')) { |
|
5220
|
|
|
define('MAPI_E_TIMEOUT', 0x80040401); |
|
5221
|
|
|
} |
|
5222
|
|
|
if (!defined('MAPI_E_TABLE_EMPTY')) { |
|
5223
|
|
|
define('MAPI_E_TABLE_EMPTY', 0x80040402); |
|
5224
|
|
|
} |
|
5225
|
|
|
if (!defined('MAPI_E_TABLE_TOO_BIG')) { |
|
5226
|
|
|
define('MAPI_E_TABLE_TOO_BIG', 0x80040403); |
|
5227
|
|
|
} |
|
5228
|
|
|
if (!defined('MAPI_E_INVALID_BOOKMARK')) { |
|
5229
|
|
|
define('MAPI_E_INVALID_BOOKMARK', 0x80040405); |
|
5230
|
|
|
} |
|
5231
|
|
|
if (!defined('MAPI_E_WAIT')) { |
|
5232
|
|
|
define('MAPI_E_WAIT', 0x80040500); |
|
5233
|
|
|
} |
|
5234
|
|
|
if (!defined('MAPI_E_CANCEL')) { |
|
5235
|
|
|
define('MAPI_E_CANCEL', 0x80040501); |
|
5236
|
|
|
} |
|
5237
|
|
|
if (!defined('MAPI_E_NOT_ME')) { |
|
5238
|
|
|
define('MAPI_E_NOT_ME', 0x80040502); |
|
5239
|
|
|
} |
|
5240
|
|
|
if (!defined('MAPI_E_CORRUPT_STORE')) { |
|
5241
|
|
|
define('MAPI_E_CORRUPT_STORE', 0x80040600); |
|
5242
|
|
|
} |
|
5243
|
|
|
if (!defined('MAPI_E_NOT_IN_QUEUE')) { |
|
5244
|
|
|
define('MAPI_E_NOT_IN_QUEUE', 0x80040601); |
|
5245
|
|
|
} |
|
5246
|
|
|
if (!defined('MAPI_E_NO_SUPPRESS')) { |
|
5247
|
|
|
define('MAPI_E_NO_SUPPRESS', 0x80040602); |
|
5248
|
|
|
} |
|
5249
|
|
|
if (!defined('MAPI_E_COLLISION')) { |
|
5250
|
|
|
define('MAPI_E_COLLISION', 0x80040604); |
|
5251
|
|
|
} |
|
5252
|
|
|
if (!defined('MAPI_E_NOT_INITIALIZED')) { |
|
5253
|
|
|
define('MAPI_E_NOT_INITIALIZED', 0x80040605); |
|
5254
|
|
|
} |
|
5255
|
|
|
if (!defined('MAPI_E_NON_STANDARD')) { |
|
5256
|
|
|
define('MAPI_E_NON_STANDARD', 0x80040606); |
|
5257
|
|
|
} |
|
5258
|
|
|
if (!defined('MAPI_E_NO_RECIPIENTS')) { |
|
5259
|
|
|
define('MAPI_E_NO_RECIPIENTS', 0x80040607); |
|
5260
|
|
|
} |
|
5261
|
|
|
if (!defined('MAPI_E_SUBMITTED')) { |
|
5262
|
|
|
define('MAPI_E_SUBMITTED', 0x80040608); |
|
5263
|
|
|
} |
|
5264
|
|
|
if (!defined('MAPI_E_HAS_FOLDERS')) { |
|
5265
|
|
|
define('MAPI_E_HAS_FOLDERS', 0x80040609); |
|
5266
|
|
|
} |
|
5267
|
|
|
if (!defined('MAPI_E_HAS_MESSAGES')) { |
|
5268
|
|
|
define('MAPI_E_HAS_MESSAGES', 0x8004060A); |
|
5269
|
|
|
} |
|
5270
|
|
|
if (!defined('MAPI_E_FOLDER_CYCLE')) { |
|
5271
|
|
|
define('MAPI_E_FOLDER_CYCLE', 0x8004060B); |
|
5272
|
|
|
} |
|
5273
|
|
|
if (!defined('MAPI_E_STORE_FULL')) { |
|
5274
|
|
|
define('MAPI_E_STORE_FULL', 0x8004060C); |
|
5275
|
|
|
} |
|
5276
|
|
|
if (!defined('MAPI_E_LOCKID_LIMIT')) { |
|
5277
|
|
|
define('MAPI_E_LOCKID_LIMIT', 0x8004060D); |
|
5278
|
|
|
} |
|
5279
|
|
|
if (!defined('MAPI_E_AMBIGUOUS_RECIP')) { |
|
5280
|
|
|
define('MAPI_E_AMBIGUOUS_RECIP', 0x80040700); |
|
5281
|
|
|
} |
|
5282
|
|
|
if (!defined('SYNC_E_OBJECT_DELETED')) { |
|
5283
|
|
|
define('SYNC_E_OBJECT_DELETED', 0x80040800); |
|
5284
|
|
|
} |
|
5285
|
|
|
if (!defined('SYNC_E_IGNORE')) { |
|
5286
|
|
|
define('SYNC_E_IGNORE', 0x80040801); |
|
5287
|
|
|
} |
|
5288
|
|
|
if (!defined('SYNC_E_CONFLICT')) { |
|
5289
|
|
|
define('SYNC_E_CONFLICT', 0x80040802); |
|
5290
|
|
|
} |
|
5291
|
|
|
if (!defined('SYNC_E_NO_PARENT')) { |
|
5292
|
|
|
define('SYNC_E_NO_PARENT', 0x80040803); |
|
5293
|
|
|
} |
|
5294
|
|
|
if (!defined('SYNC_E_CYCLE_DETECTED')) { |
|
5295
|
|
|
define('SYNC_E_CYCLE_DETECTED', 0x80040804); |
|
5296
|
|
|
} |
|
5297
|
|
|
if (!defined('SYNC_E_CYCLE')) { |
|
5298
|
|
|
define('SYNC_E_CYCLE', 0x80040804); |
|
5299
|
|
|
} |
|
5300
|
|
|
if (!defined('SYNC_E_INCEST')) { |
|
5301
|
|
|
define('SYNC_E_INCEST', 0x80040804); |
|
5302
|
|
|
} |
|
5303
|
|
|
if (!defined('SYNC_E_UNSYNCHRONIZED')) { |
|
5304
|
|
|
define('SYNC_E_UNSYNCHRONIZED', 0x80040805); |
|
5305
|
|
|
} |
|
5306
|
|
|
if (!defined('MAPI_E_NAMED_PROP_QUOTA_EXCEEDED')) { |
|
5307
|
|
|
define('MAPI_E_NAMED_PROP_QUOTA_EXCEEDED', 0x80040900); |
|
5308
|
|
|
} |
|
5309
|
|
|
if (!defined('MAPI_E_NO_ACCESS')) { |
|
5310
|
|
|
define('MAPI_E_NO_ACCESS', 0x80070005); |
|
5311
|
|
|
} |
|
5312
|
|
|
if (!defined('MAPI_E_NOT_ENOUGH_MEMORY')) { |
|
5313
|
|
|
define('MAPI_E_NOT_ENOUGH_MEMORY', 0x8007000E); |
|
5314
|
|
|
} |
|
5315
|
|
|
if (!defined('MAPI_E_INVALID_PARAMETER')) { |
|
5316
|
|
|
define('MAPI_E_INVALID_PARAMETER', 0x80070057); |
|
5317
|
|
|
} |
|
5318
|
|
|
if (!defined('SYNC_E_INVALID_PARAMETER')) { |
|
5319
|
|
|
define('SYNC_E_INVALID_PARAMETER', 0x80070057); |
|
5320
|
|
|
} |
|
5321
|
|
|
if (!defined('ecZNullObject')) { |
|
5322
|
|
|
define('ecZNullObject', 0xFFFFFC00); |
|
5323
|
|
|
} |
|
5324
|
|
|
if (!defined('ecZOutOfHandles')) { |
|
5325
|
|
|
define('ecZOutOfHandles', 0xFFFFFC04); |
|
5326
|
|
|
} |
|
5327
|
|
|
?> |
|
|
|
|
|
Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.
A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.