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