OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
kopano
/
php
/
mapi
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/10/2020 11:56:22 AM
rwxr-xr-x
📄
class.baseexception.php
3.93 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
class.baserecurrence.php
61.22 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
class.freebusypublish.php
9.52 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
class.mapiexception.php
2.62 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
class.meetingrequest.php
127.47 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
class.recurrence.php
62.08 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
class.taskrecurrence.php
16.63 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
class.taskrequest.php
38.94 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
mapi.util.php
11.25 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
mapicode.php
10.12 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
mapidefs.php
34.85 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
mapiguid.php
2.62 KB
03/22/2018 11:14:24 AM
rw-r--r--
📄
mapitags.php
60.65 KB
03/22/2018 11:14:24 AM
rw-r--r--
Editing: mapicode.php
Close
<?php /* * Copyright 2005 - 2016 Zarafa and its licensors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ /** * Status codes returned by MAPI functions * * */ /* From winerror.h */ // // Success codes // define('S_OK', 0x00000000); define('S_FALSE', 0x00000001); define('SEVERITY_ERROR', 1); /* from winerror.h */ /** * Function to make an error */ function make_mapi_e($code) { return (int) mapi_make_scode(1, $code); } /** * Function to make a warning */ function make_mapi_s($code) { return (int) mapi_make_scode(0, $code); } /* From mapicode.h */ /* * On Windows NT 3.5 and Windows 95, scodes are 32-bit values * laid out as follows: * * 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 * +-+-+-+-+-+---------------------+-------------------------------+ * |S|R|C|N|r| Facility | Code | * +-+-+-+-+-+---------------------+-------------------------------+ * * where * * S - Severity - indicates success/fail * * 0 - Success * 1 - Fail (COERROR) * * R - reserved portion of the facility code, corresponds to NT's * second severity bit. * * C - reserved portion of the facility code, corresponds to NT's * C field. * * N - reserved portion of the facility code. Used to indicate a * mapped NT status value. * * r - reserved portion of the facility code. Reserved for internal * use. Used to indicate HRESULT values that are not status * values, but are instead message ids for display strings. * * Facility - is the facility code * FACILITY_NULL 0x0 * FACILITY_RPC 0x1 * FACILITY_DISPATCH 0x2 * FACILITY_STORAGE 0x3 * FACILITY_ITF 0x4 * FACILITY_WIN32 0x7 * FACILITY_WINDOWS 0x8 * * Code - is the facility's status code * */ define('NOERROR' ,0); // The following codes don't use make_mapi_e because they are in the 0x000FF000 range, // but we cannot use the HEX value as would make most sense as that would break in 64-bit PHP // (KC server will return a negative value, but PHP would convert this define into a positive // value). Hence we declare the value exactly as we need it as integer and bypass the // 32/64-bit hell. define('MAPI_E_CALL_FAILED' ,(int)-2147467259); // 0x80004005 define('MAPI_E_NOT_ENOUGH_MEMORY' ,(int)-2147024882); // 0x8007000E define('MAPI_E_INVALID_PARAMETER' ,(int)-2147024809); // 0x80070057 define('MAPI_E_INTERFACE_NOT_SUPPORTED' ,(int)-2147467262); // 0x80004002 define('MAPI_E_NO_ACCESS' ,(int)-2147024891); // 0x80070005 define('MAPI_E_NO_SUPPORT' ,make_mapi_e(0x102)); define('MAPI_E_BAD_CHARWIDTH' ,make_mapi_e(0x103)); define('MAPI_E_STRING_TOO_LONG' ,make_mapi_e(0x105)); define('MAPI_E_UNKNOWN_FLAGS' ,make_mapi_e(0x106)); define('MAPI_E_INVALID_ENTRYID' ,make_mapi_e(0x107)); define('MAPI_E_INVALID_OBJECT' ,make_mapi_e(0x108)); define('MAPI_E_OBJECT_CHANGED' ,make_mapi_e(0x109)); define('MAPI_E_OBJECT_DELETED' ,make_mapi_e(0x10A)); define('MAPI_E_BUSY' ,make_mapi_e(0x10B)); define('MAPI_E_NOT_ENOUGH_DISK' ,make_mapi_e(0x10D)); define('MAPI_E_NOT_ENOUGH_RESOURCES' ,make_mapi_e(0x10E)); define('MAPI_E_NOT_FOUND' ,make_mapi_e(0x10F)); define('MAPI_E_VERSION' ,make_mapi_e(0x110)); define('MAPI_E_LOGON_FAILED' ,make_mapi_e(0x111)); define('MAPI_E_SESSION_LIMIT' ,make_mapi_e(0x112)); define('MAPI_E_USER_CANCEL' ,make_mapi_e(0x113)); define('MAPI_E_UNABLE_TO_ABORT' ,make_mapi_e(0x114)); define('MAPI_E_NETWORK_ERROR' ,make_mapi_e(0x115)); define('MAPI_E_DISK_ERROR' ,make_mapi_e(0x116)); define('MAPI_E_TOO_COMPLEX' ,make_mapi_e(0x117)); define('MAPI_E_BAD_COLUMN' ,make_mapi_e(0x118)); define('MAPI_E_EXTENDED_ERROR' ,make_mapi_e(0x119)); define('MAPI_E_COMPUTED' ,make_mapi_e(0x11A)); define('MAPI_E_CORRUPT_DATA' ,make_mapi_e(0x11B)); define('MAPI_E_UNCONFIGURED' ,make_mapi_e(0x11C)); define('MAPI_E_FAILONEPROVIDER' ,make_mapi_e(0x11D)); define('MAPI_E_UNKNOWN_CPID' ,make_mapi_e(0x11E)); define('MAPI_E_UNKNOWN_LCID' ,make_mapi_e(0x11F)); /* Flavors of E_ACCESSDENIED, used at logon */ define('MAPI_E_PASSWORD_CHANGE_REQUIRED' ,make_mapi_e(0x120)); define('MAPI_E_PASSWORD_EXPIRED' ,make_mapi_e(0x121)); define('MAPI_E_INVALID_WORKSTATION_ACCOUNT' ,make_mapi_e(0x122)); define('MAPI_E_INVALID_ACCESS_TIME' ,make_mapi_e(0x123)); define('MAPI_E_ACCOUNT_DISABLED' ,make_mapi_e(0x124)); /* MAPI base function and status object specific errors and warnings */ define('MAPI_E_END_OF_SESSION' ,make_mapi_e(0x200)); define('MAPI_E_UNKNOWN_ENTRYID' ,make_mapi_e(0x201)); define('MAPI_E_MISSING_REQUIRED_COLUMN' ,make_mapi_e(0x202)); define('MAPI_W_NO_SERVICE' ,make_mapi_s(0x203)); /* Property specific errors and warnings */ define('MAPI_E_BAD_VALUE' ,make_mapi_e(0x301)); define('MAPI_E_INVALID_TYPE' ,make_mapi_e(0x302)); define('MAPI_E_TYPE_NO_SUPPORT' ,make_mapi_e(0x303)); define('MAPI_E_UNEXPECTED_TYPE' ,make_mapi_e(0x304)); define('MAPI_E_TOO_BIG' ,make_mapi_e(0x305)); define('MAPI_E_DECLINE_COPY' ,make_mapi_e(0x306)); define('MAPI_E_UNEXPECTED_ID' ,make_mapi_e(0x307)); define('MAPI_W_ERRORS_RETURNED' ,make_mapi_s(0x380)); /* Table specific errors and warnings */ define('MAPI_E_UNABLE_TO_COMPLETE' ,make_mapi_e(0x400)); define('MAPI_E_TIMEOUT' ,make_mapi_e(0x401)); define('MAPI_E_TABLE_EMPTY' ,make_mapi_e(0x402)); define('MAPI_E_TABLE_TOO_BIG' ,make_mapi_e(0x403)); define('MAPI_E_INVALID_BOOKMARK' ,make_mapi_e(0x405)); define('MAPI_W_POSITION_CHANGED' ,make_mapi_s(0x481)); define('MAPI_W_APPROX_COUNT' ,make_mapi_s(0x482)); /* Transport specific errors and warnings */ define('MAPI_E_WAIT' ,make_mapi_e(0x500)); define('MAPI_E_CANCEL' ,make_mapi_e(0x501)); define('MAPI_E_NOT_ME' ,make_mapi_e(0x502)); define('MAPI_W_CANCEL_MESSAGE' ,make_mapi_s(0x580)); /* Message Store, Folder, and Message specific errors and warnings */ define('MAPI_E_CORRUPT_STORE' ,make_mapi_e(0x600)); define('MAPI_E_NOT_IN_QUEUE' ,make_mapi_e(0x601)); define('MAPI_E_NO_SUPPRESS' ,make_mapi_e(0x602)); define('MAPI_E_COLLISION' ,make_mapi_e(0x604)); define('MAPI_E_NOT_INITIALIZED' ,make_mapi_e(0x605)); define('MAPI_E_NON_STANDARD' ,make_mapi_e(0x606)); define('MAPI_E_NO_RECIPIENTS' ,make_mapi_e(0x607)); define('MAPI_E_SUBMITTED' ,make_mapi_e(0x608)); define('MAPI_E_HAS_FOLDERS' ,make_mapi_e(0x609)); define('MAPI_E_HAS_MESSAGES' ,make_mapi_e(0x60A)); define('MAPI_E_FOLDER_CYCLE' ,make_mapi_e(0x60B)); define('MAPI_E_STORE_FULL' ,make_mapi_e(0x60C)); define('MAPI_W_PARTIAL_COMPLETION' ,make_mapi_s(0x680)); /* Address Book specific errors and warnings */ define('MAPI_E_AMBIGUOUS_RECIP' ,make_mapi_e(0x700)); /* ICS errors and warnings */ define('SYNC_E_UNKNOWN_FLAGS', MAPI_E_UNKNOWN_FLAGS); define('SYNC_E_INVALID_PARAMETER', MAPI_E_INVALID_PARAMETER); define('SYNC_E_ERROR', MAPI_E_CALL_FAILED); define('SYNC_E_OBJECT_DELETED', make_mapi_e(0x800)); define('SYNC_E_IGNORE', make_mapi_e(0x801)); define('SYNC_E_CONFLICT', make_mapi_e(0x802)); define('SYNC_E_NO_PARENT', make_mapi_e(0x803)); define('SYNC_E_INCEST', make_mapi_e(0x804)); define('SYNC_E_UNSYNCHRONIZED', make_mapi_e(0x805)); define('SYNC_W_PROGRESS', make_mapi_s(0x820)); define('SYNC_W_CLIENT_CHANGE_NEWER', make_mapi_s(0x821));