snappymail/dev/Common/Enums.js

109 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-06-28 02:14:33 +08:00
/* eslint quote-props: 0 */
2022-03-06 05:25:32 +08:00
export const
2015-11-15 08:23:16 +08:00
/**
* @enum {string}
*/
2022-03-06 05:25:32 +08:00
Scope = {
MessageList: 'MessageList',
FolderList: 'FolderList',
MessageView: 'MessageView',
Settings: 'Settings'
2022-03-06 05:25:32 +08:00
},
2015-11-15 08:23:16 +08:00
/**
* @enum {number}
*/
2022-03-06 05:25:32 +08:00
UploadErrorCode = {
Normal: 0,
FileIsTooBig: 1,
FilePartiallyUploaded: 3,
NoFileUploaded: 4,
MissingTempFolder: 6,
OnSavingFile: 7,
FileType: 98,
Unknown: 99
2022-03-06 05:25:32 +08:00
},
2015-11-15 08:23:16 +08:00
/**
* @enum {number}
*/
2022-03-06 05:25:32 +08:00
SaveSettingsStep = {
Animate: -2,
Idle: -1,
TrueResult: 1,
FalseResult: 0
2022-03-06 05:25:32 +08:00
},
2015-11-15 08:23:16 +08:00
/**
* @enum {number}
*/
2022-03-06 05:25:32 +08:00
Notification = {
RequestError: 1,
RequestAborted: 2,
2021-11-18 23:37:42 +08:00
// Global
InvalidToken: 101,
AuthError: 102,
2021-11-18 23:37:42 +08:00
// User
ConnectionError: 104,
DomainNotAllowed: 109,
AccountNotAllowed: 110,
ContactsSyncError: 140,
CantGetMessageList: 201,
CantGetMessage: 202,
CantDeleteMessage: 203,
CantMoveMessage: 204,
CantCopyMessage: 205,
CantSaveMessage: 301,
CantSendMessage: 302,
InvalidRecipients: 303,
CantSaveFilters: 351,
CantGetFilters: 352,
CantActivateFiltersScript: 353,
CantDeleteFiltersScript: 354,
2021-01-22 00:21:19 +08:00
// FiltersAreNotCorrect: 355,
CantCreateFolder: 400,
CantRenameFolder: 401,
CantDeleteFolder: 402,
CantSubscribeFolder: 403,
CantUnsubscribeFolder: 404,
CantDeleteNonEmptyFolder: 405,
2021-01-22 00:21:19 +08:00
// CantSaveSettings: 501,
DomainAlreadyExists: 601,
DemoSendMessageError: 750,
DemoAccountError: 751,
AccountAlreadyExists: 801,
AccountDoesNotExist: 802,
AccountSwitchFailed: 803,
MailServerError: 901,
ClientViewError: 902,
InvalidInputArgument: 903,
JsonFalse: 950,
JsonParse: 952,
// JsonTimeout: 953,
UnknownNotification: 998,
2021-11-18 23:37:42 +08:00
UnknownError: 999,
// Admin
CantInstallPackage: 701,
CantDeletePackage: 702,
InvalidPluginPackage: 703,
UnsupportedPluginPackage: 704,
CantSavePluginSettings: 705
2016-04-21 01:12:51 +08:00
};