diff --git a/config/apigeneration.json b/config/apigeneration.json index d8324fb9..c9237649 100644 --- a/config/apigeneration.json +++ b/config/apigeneration.json @@ -64,5 +64,5 @@ } }, "security": [{ "AccessTokenAuth": [] }], - "docsPath": "/openapidocs.json" + "docsPath": "/docs/api/openapidocs.json" } \ No newline at end of file diff --git a/docs/api/index.html b/docs/api/index.html index 01ad01b7..37255e62 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -14,7 +14,7 @@ - + diff --git a/docs/api/openapi.yml b/docs/api/openapi.yml deleted file mode 100644 index c05a493e..00000000 --- a/docs/api/openapi.yml +++ /dev/null @@ -1,7137 +0,0 @@ -openapi: 3.0.0 -info: - title: WildDuck API - description: WildDuck API docs - version: 1.0.0 - contact: - url: 'https://github.com/nodemailer/wildduck' - -servers: - - url: 'https://api.wildduck.email' - -tags: - - name: Addresses - - name: ApplicationPasswords - - name: Archive - description: Archive includes all deleted messages. Once messages are old enough then these are permanenetly deleted from the archive as well. Until then you can restore the deleted messages. - - name: Audit - description: 'Auditing allows to monitor an email account. All existing, deleted and new emails are copied to the auditing system. See also https://github.com/nodemailer/wildduck-audit-manager' - - name: Authentication - - name: Autoreplies - - name: Certs - description: WildDuck allows to register TLS certificates to be used with SNI connections. These certificates are used by IMAP, POP3, API and SMTP servers when a SNI capable client establishes a TLS connection. This does not apply for MX servers. - - name: DKIM - description: Whenever an email is sent WildDuck checks if there is a DKIM key registered for the domain name of the sender address and uses it to sign the message. - - name: DomainAccess - description: Add sender domain names to allowlist (messages are all accepted) or blocklist (messages are sent to Spam folder) - - name: DomainAliases - - name: Filters - - name: Mailboxes - - name: Messages - - name: Settings - - name: Storage - description: Storage allows easier attachment handling when composing Draft messages. Instead of uploading the attachmnent with every draft update, you store the attachment to the Storage and then link stored file for the Draft. - - name: Submission - - name: TwoFactorAuth - - name: Users - - name: Webhooks - -paths: - '/addresses/forwarded/{address}': - delete: - tags: - - Addresses - summary: Delete a forwarded Address - operationId: deleteForwardedAddress - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Addresses - summary: Request forwarded Addresses information - operationId: getForwardedAddress - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetForwardedAddressResponse' - put: - tags: - - Addresses - summary: Update forwarded Address information - operationId: updateForwardedAddress - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateForwardedAddressRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: address - in: path - description: ID of the Address - schema: - type: string - required: true - '/users/{user}/addresses/{address}': - delete: - tags: - - Addresses - summary: Delete an Address - operationId: deleteUserAddress - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Addresses - summary: Request Addresses information - operationId: getUserAddress - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetUserAddressResponse' - put: - tags: - - Addresses - summary: Update Address information - operationId: updateUserAddress - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateUserAddressRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: address - in: path - description: ID of the Address - required: true - schema: - type: string - '/addresses/resolve/{address}': - get: - tags: - - Addresses - summary: Get Address info - operationId: resolveAddress - parameters: - - name: allowWildcard - in: query - description: If true then resolves also wildcard addresses - schema: - type: boolean - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/ResolveAddressResponse' - parameters: - - name: address - in: path - description: ID of the Address or e-mail address string - required: true - schema: - type: string - /addresses: - get: - tags: - - Addresses - summary: List registered Addresses - operationId: getAddresses - parameters: - - name: query - in: query - description: Partial match of an address - schema: - type: string - - name: forward - in: query - description: Partial match of a forward email address or URL - schema: - type: string - - name: tags - in: query - description: Comma separated list of tags. The Address must have at least one to be set - schema: - type: string - - name: requiredTags - in: query - description: Comma separated list of tags. The Address must have all listed tags to be set - schema: - type: string - - name: metaData - in: query - description: 'If true, then includes metaData in the response' - schema: - type: boolean - - name: internalData - in: query - description: 'If true, then includes internalData in the response. Not shown for user-role tokens.' - schema: - type: boolean - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetAddressesResponse' - '/users/{user}/addresses': - get: - tags: - - Addresses - summary: List registered Addresses for a User - operationId: getUserAddresses - parameters: - - name: metaData - in: query - description: 'If true, then includes metaData in the response' - schema: - type: boolean - - name: internalData - in: query - description: 'If true, then includes internalData in the response. Not shown for user-role tokens.' - schema: - type: boolean - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetUserAddressesResponse' - post: - tags: - - Addresses - summary: Create new Address - description: 'Add a new email address for a User. Addresses can contain unicode characters. Dots in usernames are normalized so no need to create both "firstlast@example.com" and "first.last@example.com" Special addresses `*@example.com`, `*suffix@example.com` and `username@*` catches all emails to these domains or users without a registered destination (requires allowWildcard argument)' - operationId: createUserAddress - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateUserAddressRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateUserAddressResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/addressregister': - get: - tags: - - Addresses - summary: List addresses from communication register - description: 'Lists addresses from email headers. Includes addresses both from sent and received messages. Sorted by last usage.' - operationId: getUserAddressregister - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - example: 507f1f77bcf86cd799439011 - - name: query - in: query - description: Prefix of an address or a name - required: true - schema: - type: string - example: john - - name: limit - in: query - description: How many records to return - schema: - type: number - example: 25 - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetUserAddressesregisterResponse' - /addresses/forwarded: - post: - tags: - - Addresses - summary: Create new forwarded Address - description: Add a new forwarded email address. Addresses can contain unicode characters. Dots in usernames are normalized so no need to create both "firstlast@example.com" and "first.last@example.com" Special addresses `*@example.com` and `username@*` catches all emails to these domains or users without a registered destination (requires allowWildcard argument) - operationId: createForwardedAddress - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateForwardedAddressRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateForwardedAddressResponse' - /addresses/renameDomain: - put: - tags: - - Addresses - summary: Rename domain in addresses - description: 'Renames domain names for addresses, DKIM keys and Domain Aliases' - operationId: renameDomain - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/RenameDomainRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - '/users/{user}/asps/{asp}': - delete: - tags: - - ApplicationPasswords - summary: Delete an Application Password - operationId: deleteASP - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - ApplicationPasswords - summary: Request ASP information - operationId: getASP - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetASPResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: asp - in: path - description: ID of the Application Password - required: true - schema: - type: string - '/users/{user}/asps': - get: - tags: - - ApplicationPasswords - summary: List Application Passwords - operationId: getASPs - parameters: - - name: showAll - in: query - description: If not true then skips entries with a TTL set - schema: - type: boolean - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetASPsResponse' - post: - tags: - - ApplicationPasswords - summary: Create new Application Password - operationId: createASP - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateASPRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateASPResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/archived/messages': - get: - tags: - - Archive - summary: List archived messages - description: Archive contains all recently deleted messages besides Drafts etc. - operationId: getArchivedMessages - parameters: - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: order - in: query - description: Ordering of the records by insert date - schema: - $ref: '#/components/schemas/Order' - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetArchivedMessagesResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/archived/messages/{message}/restore': - post: - tags: - - Archive - summary: Restore archived Message - description: 'Restores a single archived message by moving it back to the mailbox it was deleted from or to provided target mailbox. If target mailbox does not exist, then the message is moved to INBOX.' - operationId: restoreMessage - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/RestoreMessageRequest' - required: false - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/RestoreMessageResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: message - in: path - description: Message ID - required: true - schema: - type: number - '/users/{user}/archived/restore': - post: - tags: - - Archive - summary: Restore archived messages - description: 'Initiates a restore task to move archived messages of a date range back to the mailboxes the messages were deleted from. If target mailbox does not exist, then the messages are moved to INBOX.' - operationId: restoreMessages - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/RestoreMessagesRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/audit/{audit}': - get: - tags: - - Audit - summary: Request Audit Info - description: This method returns information about stored audit - operationId: getAudit - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetAuditResponse' - parameters: - - name: audit - in: path - description: ID of the Audit - required: true - schema: - type: string - '/audit/{audit}/export.mbox': - get: - tags: - - Audit - summary: Export Audited Emails - description: This method returns a mailbox file that contains all audited emails - operationId: getAuditEmails - responses: - '200': - description: Success - parameters: - - name: audit - in: path - description: ID of the Audit - required: true - schema: - type: string - /audit: - post: - tags: - - Audit - summary: Create new audit - description: Initiates a message audit - operationId: createAudit - requestBody: - description: Initiates a message audit - content: - application/json: - schema: - $ref: '#/components/schemas/CreateAuditRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateAuditResponse' - /authenticate: - delete: - tags: - - Authentication - summary: Invalidate authentication token - description: This method invalidates currently used authentication token. If token is not provided then nothing happens - operationId: invalidateAccessToken - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - post: - tags: - - Authentication - summary: Authenticate a User - operationId: authenticate - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/AuthenticateRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/AuthenticateResponse' - - /preauth: - post: - tags: - - Authentication - summary: Pre-auth check - description: Check if an username exists and can be used for authentication - operationId: preauth - requestBody: - content: - application/json: - schema: - required: - - username - type: object - properties: - username: - type: string - description: Username or E-mail address - scope: - type: string - description: 'Required scope. One of master, imap, smtp, pop3' - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - required: - - success - - id - - username - - scope - - require2fa - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of authenticated User - username: - type: string - description: Username of authenticated User - scope: - type: string - description: The scope this authentication is valid for - require2fa: - type: array - items: - type: string - description: List of enabled 2FA mechanisms - - '/users/{user}/authlog': - get: - tags: - - Authentication - summary: List authentication Events - operationId: getAuthlog - parameters: - - name: action - in: query - description: Limit listing only to values with specific action value - schema: - type: string - - name: filterIp - in: query - description: Limit listing only to values with specific IP address - schema: - type: string - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetAuthlogResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/authlog/{event}': - get: - tags: - - Authentication - summary: Request Event information - operationId: getAuthlogEvent - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetAuthlogEventResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: event - in: path - description: ID of the Event - required: true - schema: - type: string - '/users/{user}/autoreply': - delete: - tags: - - Autoreplies - summary: Delete Autoreply information - operationId: deleteAutoreply - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Autoreplies - summary: Request Autoreply information - operationId: getAutoreply - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetAutoreplyResponse' - put: - tags: - - Autoreplies - summary: Update Autoreply information - operationId: updateAutoreply - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateAutoreplyRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - '/dkim/{dkim}': - delete: - tags: - - DKIM - summary: Delete a DKIM key - operationId: deleteDkimKey - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - DKIM - summary: Request DKIM information - operationId: getDkimKey - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetDkimKeyResponse' - parameters: - - name: dkim - in: path - description: ID of the DKIM - required: true - schema: - type: string - /dkim: - get: - tags: - - DKIM - summary: List registered DKIM keys - operationId: getDkimKeys - parameters: - - name: query - in: query - description: Partial match of a Domain name - schema: - type: string - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetDkimKeysResponse' - post: - tags: - - DKIM - summary: Create or update DKIM key for domain - description: Add a new DKIM key for a Domain or update existing one. There can be single DKIM key registered for each domain name. - operationId: updateDkimKey - requestBody: - description: Add a new DKIM key for a Domain or update existing one. There can be single DKIM key registered for each domain name. - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateDkimKeyRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateDkimKeyResponse' - '/dkim/resolve/{domain}': - get: - tags: - - DKIM - summary: Resolve ID for a DKIM domain - operationId: resolveDkim - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/ResolveIdResponse' - parameters: - - name: domain - in: path - description: DKIM domain - required: true - schema: - type: string - - '/certs/{cert}': - delete: - tags: - - Certs - summary: Delete a TLS certificate - operationId: deleteTlsCert - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Certs - summary: Request TLS certificate information - operationId: getTLSCerticate - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetTLSCertResult' - parameters: - - name: cert - in: path - description: ID of the TLS certificate - required: true - schema: - type: string - /certs: - get: - tags: - - Certs - summary: List registered TLS certificates - operationId: getTLSCerticates - parameters: - - name: query - in: query - description: Partial match of a server name - schema: - type: string - example: example.com - - name: altNames - in: query - description: Match `query` value against SAN as well (including wildcard names) - schema: - type: boolean - example: true - default: false - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - example: 'eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0' - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetTLSCertsResponse' - post: - tags: - - Certs - summary: Create or update TLS certificate for server name - description: > - Add a new TLS certificate for a server name or update existing one. You can add a single certificate for each server name but SAN names are supported as well. - For example you can add a sertificate for "mydomain.com" that includes "\*.mydomain.com" in SAN and the same certificate would be used for requests that do not have it's own server name registered but match the SAN value. - - > NB! you must ensure yourself that the `servername` value is actually listed in certificate's common name or SAN as WildDuck is going to use this certificate regardless. - operationId: updateTLSCertificate - requestBody: - description: Add a new TLS certificate for a server name or update existing one - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateTLSCertRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateTLSCertResponse' - - '/certs/resolve/{servername}': - get: - tags: - - Certs - summary: Resolve ID for a server name - operationId: resolveTLSCertificate - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/ResolveIdResponse' - parameters: - - name: servername - in: path - description: Server name - required: true - schema: - type: string - - '/domainaccess/{domain}': - delete: - tags: - - DomainAccess - summary: Delete a Domain from listing - operationId: deleteDomainListing - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: domain - in: path - description: Listed domains unique ID - required: true - schema: - type: string - '/domainaccess/{tag}/allow': - get: - tags: - - DomainAccess - summary: List allowlisted domains - operationId: getAllowedDomain - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetAllowedDomainResponse' - post: - tags: - - DomainAccess - summary: Add domain to allowlist - description: If an email is sent from a domain that is listed in the allowlist then it is never marked as spam. Lists apply for tagged users. - operationId: createAllowedDomain - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateAllowedDomainRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateAllowedDomainResponse' - parameters: - - name: tag - in: path - description: Tag to look for - required: true - schema: - type: string - '/domainaccess/{tag}/block': - get: - tags: - - DomainAccess - summary: List blocklisted domains - operationId: getBlockedDomain - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetBlockedDomainResponse' - post: - tags: - - DomainAccess - summary: Add domain to blocklist - description: If an email is sent from a domain that is listed in the blocklist then it is always marked as spam. Lists apply for tagged users. - operationId: createBlockedDomain - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateBlockedDomainRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateBlockedDomainResponse' - parameters: - - name: tag - in: path - description: Tag to look for - required: true - schema: - type: string - '/domainaliases/{alias}': - delete: - tags: - - DomainAliases - summary: Delete an Alias - operationId: deleteDomainAlias - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - DomainAliases - summary: Request Alias information - operationId: getDomainAlias - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetDomainAliasResponse' - parameters: - - name: alias - in: path - description: ID of the Alias - required: true - schema: - type: string - /domainaliases: - get: - tags: - - DomainAliases - summary: List registered Domain Aliases - operationId: getDomainAliases - parameters: - - name: query - in: query - description: Partial match of a Domain Alias or Domain name - schema: - type: string - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetDomainAliasesResponse' - post: - tags: - - DomainAliases - summary: Create new Domain Alias - description: Add a new Alias for a Domain. This allows to accept mail on username@domain and username@alias - operationId: createDomainAlias - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateDomainAliasRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateDomainAliasResponse' - '/domainaliases/resolve/{alias}': - get: - tags: - - DomainAliases - summary: Resolve ID for a domain aias - operationId: resolveDomainAlias - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/ResolveIdResponse' - parameters: - - name: alias - in: path - description: Alias domain - required: true - schema: - type: string - - /data/export: - post: - tags: - - Export - summary: Export data - description: Export data for matching users. Export dump does not include emails, only account structure (user data, password hashes, mailboxes, filters, etc.). A special "export"-role access token is required for exporting and importing. - operationId: createExport - requestBody: - description: Export data for matching users - content: - application/json: - schema: - type: object - properties: - users: - type: array - items: - type: string - description: 'An array of User ID values to export' - tags: - type: array - items: - type: string - description: 'An array of user tags to export. If set then at least one tag must exist on an user.' - required: true - responses: - '200': - description: Success - content: - application/octet-stream: - schema: - type: string - description: Success - format: binary - - /data/import: - post: - tags: - - Export - summary: Import user data - description: Import data from an export dump. If a database entry already exists, it is not modified. A special "export"-role access token is required for exporting and importing. - operationId: createImport - requestBody: - description: Import user data - content: - application/octet-stream: - schema: - type: string - description: Success - format: binary - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - type: object - properties: - entries: - type: number - description: 'How many database entries were found from the export file' - imported: - type: number - description: 'How many database entries were imported from the export file' - failed: - type: number - description: 'How many database entries were not imported due to some error' - existing: - type: number - description: 'How many database existing entries were not imported' - - - '/users/{user}/filters/{filter}': - delete: - tags: - - Filters - summary: Delete a Filter - operationId: deleteFilter - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Filters - summary: Request Filter information - operationId: getFilter - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetFilterResponse' - put: - tags: - - Filters - summary: Update Filter information - description: 'This method updates Filter data. To unset a value, use empty strings' - operationId: updateFilter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateFilterRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateFilterResponse' - parameters: - - name: user - in: path - description: Users unique ID - required: true - schema: - type: string - - name: filter - in: path - description: Filters unique ID - required: true - schema: - type: string - - /filters: - get: - tags: - - Filters - summary: List all Filters - operationId: getAllFilters - parameters: - - name: forward - in: query - description: Partial match of a forward email address or URL - schema: - type: string - - name: metaData - in: query - description: 'If true, then includes metaData in the response' - schema: - type: boolean - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: number - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: number - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetAllFiltersResponse' - - '/users/{user}/filters': - get: - tags: - - Filters - summary: List Filters for a User - operationId: getFilters - parameters: - - name: metaData - in: query - description: 'If true, then includes metaData in the response' - schema: - type: boolean - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetFiltersResponse' - post: - tags: - - Filters - summary: Create new Filter - operationId: createFilter - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateFilterRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateFilterResponse' - parameters: - - name: user - in: path - description: Users unique ID - required: true - schema: - type: string - '/users/{user}/mailboxes/{mailbox}': - delete: - tags: - - Mailboxes - summary: Delete a Mailbox - operationId: deleteMailbox - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Mailboxes - summary: Request Mailbox information - operationId: getMailbox - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetMailboxResponse' - put: - tags: - - Mailboxes - summary: Update Mailbox information - operationId: updateMailbox - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateMailboxRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: Users unique ID - required: true - schema: - type: string - - name: mailbox - in: path - description: Mailbox unique ID. Special use folders and INBOX can not be deleted - required: true - schema: - type: string - '/users/{user}/mailboxes': - get: - tags: - - Mailboxes - summary: List Mailboxes for a User - operationId: getMailboxes - parameters: - - name: specialUse - in: query - description: Should the response include only folders with specialUse flag set. - schema: - type: boolean - - name: showHidden - in: query - description: Hidden folders are not included in the listing by default. - schema: - type: boolean - - name: counters - in: query - description: Should the response include counters (total + unseen). Counters come with some overhead. - schema: - type: boolean - - name: sizes - in: query - description: Should the response include mailbox size in bytes. Size numbers come with a lot of overhead as an aggregated query is ran. - schema: - type: boolean - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetMailboxesResponse' - post: - tags: - - Mailboxes - summary: Create new Mailbox - operationId: createMailbox - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateMailboxRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateMailboxResponse' - parameters: - - name: user - in: path - description: Users unique ID - required: true - schema: - type: string - '/users/{user}/mailboxes/{mailbox}/messages/{message}': - delete: - tags: - - Messages - summary: Delete a Message - operationId: deleteMessage - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Messages - summary: Request Message information - operationId: getMessage - parameters: - - name: markAsSeen - in: query - description: If true then marks message as seen - schema: - type: boolean - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetMessageResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: mailbox - in: path - description: ID of the Mailbox - required: true - schema: - type: string - - name: message - in: path - description: Message ID - required: true - schema: - type: number - '/users/{user}/mailboxes/{mailbox}/messages': - delete: - tags: - - Messages - summary: Delete all Messages from a Mailbox - operationId: deleteMessagesInMailbox - parameters: - - name: async - in: query - description: Schedule deletion task - schema: - type: boolean - default: false - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/DeleteMessagesInMailboxResponse' - get: - tags: - - Messages - summary: List messages in a Mailbox - operationId: getMessages - parameters: - - name: unseen - in: query - description: 'If true, then returns only unseen messages' - schema: - type: boolean - - name: metaData - in: query - description: 'If true, then includes metaData in the response' - schema: - type: boolean - - name: threadCounters - in: query - description: 'If true, then includes threadMessageCount in the response. Counters come with some overhead' - schema: - type: boolean - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: order - in: query - description: Ordering of the records by insert date - schema: - $ref: '#/components/schemas/Order' - - name: includeHeaders - in: query - description: 'Comma separated list of header keys to include in the response' - schema: - type: string - example: 'List-ID, MIME-version' - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetMessagesResponse' - put: - tags: - - Messages - summary: Update Message information - description: This method updates message flags and also allows to move messages to a different mailbox - operationId: updateMessage - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateMessageRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateMessageResponse' - post: - tags: - - Messages - summary: Upload Message - description: 'This method allows to upload either an RFC822 formatted message or a message structure to a mailbox. Raw message is stored unmodified, no headers are added or removed. If you want to generate the uploaded message from structured data fields, then do not use the raw property.' - operationId: uploadMessage - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UploadMessageRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/UploadMessageResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: mailbox - in: path - description: ID of the Mailbox - required: true - schema: - type: string - '/users/{user}/mailboxes/{mailbox}/messages/{message}/forward': - post: - tags: - - Messages - summary: Forward stored Message - description: This method allows either to re-forward a message to an original forward target or forward it to some other address. This is useful if a user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message. - operationId: forwardStoredMessage - requestBody: - description: This method allows either to re-forward a message to an original forward target or forward it to some other address. This is useful if a user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message. - content: - application/json: - schema: - $ref: '#/components/schemas/ForwardStoredMessageRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/ForwardStoredMessageResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: mailbox - in: path - description: ID of the Mailbox - required: true - schema: - type: string - - name: message - in: path - description: Message ID - required: true - schema: - type: number - '/users/{user}/mailboxes/{mailbox}/messages/{message}/attachments/{attachment}': - get: - tags: - - Messages - summary: Download Attachment - description: This method returns attachment file contents in binary form - operationId: getMessageAttachment - responses: - '200': - description: Success - content: - application/octet-stream: - schema: - type: string - description: Success - format: binary - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: mailbox - in: path - description: ID of the Mailbox - required: true - schema: - type: string - - name: message - in: path - description: ID of the Message - required: true - schema: - type: number - - name: attachment - in: path - description: ID of the Attachment - required: true - schema: - type: string - '/users/{user}/mailboxes/{mailbox}/messages/{message}/message.eml': - get: - tags: - - Messages - summary: Get Message source - description: This method returns the full RFC822 formatted source of the stored message - operationId: getMessageSource - responses: - '200': - description: Success - content: - text/plain: - schema: - type: object - description: Success - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: mailbox - in: path - description: ID of the Mailbox - required: true - schema: - type: string - - name: message - in: path - description: ID of the Message - required: true - schema: - type: number - '/users/{user}/outbound/{queueId}': - delete: - tags: - - Messages - summary: Delete an Outbound Message - description: You can delete outbound emails that are still in queue. Queue ID can be found from the `outbound` property of a stored email. - operationId: deleteOutboundMessage - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: queueId - in: path - description: Outbound queue ID of the message - required: true - schema: - type: string - - '/users/{user}/search': - get: - tags: - - Messages - summary: Search for messages - operationId: searchMessages - description: This method allows searching for matching messages. - parameters: - - name: mailbox - in: query - description: ID of the Mailbox - schema: - type: string - - name: id - in: query - description: Message ID values, only applies when used in combination with `mailbox`. Either comma separated numbers (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*) - schema: - type: string - - name: thread - in: query - description: Thread ID - schema: - type: string - - name: query - in: query - description: 'Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.' - schema: - type: string - - name: datestart - in: query - description: Datestring for the earliest message storing time - schema: - type: string - format: date-time - - name: dateend - in: query - description: Datestring for the latest message storing time - schema: - type: string - format: date-time - - name: from - in: query - description: 'Partial match for the From: header line' - schema: - type: string - - name: to - in: query - description: 'Partial match for the To: and Cc: header lines' - schema: - type: string - - name: subject - in: query - description: 'Partial match for the Subject: header line' - schema: - type: string - - name: attachments - in: query - description: 'If true, then matches only messages with attachments' - schema: - type: boolean - - name: flagged - in: query - description: 'If true, then matches only messages with \Flagged flags' - schema: - type: boolean - - name: unseen - in: query - description: 'If true, then matches only messages without \Seen flags' - schema: - type: boolean - - name: searchable - in: query - description: 'If true, then matches messages not in Junk or Trash' - schema: - type: boolean - - name: or.query - in: query - description: 'Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.' - schema: - type: string - - name: or.from - in: query - description: 'Partial match for the From: header line' - schema: - type: string - - name: or.to - in: query - description: 'Partial match for the To: and Cc: header lines' - schema: - type: string - - name: or.subject - in: query - description: 'Partial match for the Subject: header line' - schema: - type: string - - name: minSize - in: query - description: Minimal message size in bytes - schema: - type: number - - name: maxSize - in: query - description: Maximal message size in bytes - schema: - type: number - - name: threadCounters - in: query - description: 'If true, then includes threadMessageCount in the response. Counters come with some overhead' - schema: - type: boolean - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: order - in: query - description: Ordering of the records by insert date. If no order is supplied, results are sorted by heir mongoDB ObjectId. - schema: - $ref: '#/components/schemas/Order' - - name: includeHeaders - in: query - description: 'Comma separated list of header keys to include in the response' - schema: - type: string - example: 'List-ID, MIME-version' - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SearchMessagesResponse' - - post: - tags: - - Messages - summary: Search and update messages - operationId: searchApplyMessages - description: This method allows applying an action to all matching messages. This is an async method so that it will return immediately. Actual modifications are run in the background. - requestBody: - content: - application/json: - schema: - type: object - properties: - mailbox: - description: ID of the Mailbox - type: string - id: - description: Message ID values, only applies when used in combination with `mailbox`. Either comma separated numbers (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*) - type: string - thread: - description: Thread ID - type: string - query: - description: 'Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.' - type: string - datestart: - description: Datestring for the earliest message storing time - type: string - format: date-time - dateend: - description: Datestring for the latest message storing time - type: string - format: date-time - from: - description: 'Partial match for the From: header line' - type: string - to: - description: 'Partial match for the To: and Cc: header lines' - type: string - subject: - description: 'Partial match for the Subject: header line' - type: string - attachments: - description: 'If true, then matches only messages with attachments' - type: boolean - flagged: - description: 'If true, then matches only messages with \Flagged flags' - type: boolean - unseen: - description: 'If true, then matches only messages without \Seen flags' - type: boolean - searchable: - description: 'If true, then matches messages not in Junk or Trash' - type: boolean - or: - type: object - description: 'At least onOne of the included terms must match' - properties: - query: - description: 'Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.' - type: string - from: - description: 'Partial match for the From: header line' - type: string - to: - description: 'Partial match for the To: and Cc: header lines' - type: string - subject: - description: 'Partial match for the Subject: header line' - type: string - minSize: - description: Minimal message size in bytes - type: number - maxSize: - description: Maximal message size in bytes - type: number - action: - type: object - description: 'Define actions to take with matching messages' - properties: - moveTo: - type: string - description: ID of the target Mailbox if you want to move messages - seen: - type: boolean - description: State of the \Seen flag - flagged: - type: boolean - description: State of the \Flagged flag - - responses: - '200': - description: Success - content: - application/json: - schema: - type: object - properties: - success: - type: boolean - description: Indicates if the action succeeded or not - scheduled: - type: string - description: ID of the scheduled operation - - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/mailboxes/{mailbox}/messages/{message}/submit': - post: - tags: - - Messages - summary: Submit Draft for delivery - description: This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder. - operationId: submitStoredMessage - requestBody: - description: This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder. - content: - application/json: - schema: - $ref: '#/components/schemas/SubmitStoredMessageRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SubmitStoredMessageResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: mailbox - in: path - description: ID of the Mailbox - required: true - schema: - type: string - - name: message - in: path - description: Message ID - required: true - schema: - type: number - '/users/{user}/storage/{file}': - delete: - tags: - - Storage - summary: Delete a File - operationId: deleteFile - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Storage - summary: Download File - description: This method returns stored file contents in binary form - operationId: getFile - responses: - '200': - description: Success - content: - application/octet-stream: - schema: - type: string - description: Success - format: binary - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - - name: file - in: path - description: ID of the File - required: true - schema: - type: string - '/users/{user}/storage': - get: - tags: - - Storage - summary: List stored files - operationId: getFiles - parameters: - - name: query - in: query - description: Partial match of a filename - schema: - type: string - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetFilesResponse' - post: - tags: - - Storage - summary: Upload File - description: This method allows to upload an attachment to be linked from a draft - operationId: uploadFile - requestBody: - content: - multipart/form-data: - encoding: {} - schema: - required: - - content - type: object - properties: - filename: - type: string - description: Name of the file - contentType: - type: string - description: MIME type of the file. Is detected from the file name by default - encoding: - type: string - description: Encoding of the file content. Useful if you want to upload the file in base64 encoded format. Valid options "base64", "hex", "utf8" - content: - type: string - format: binary - required: false - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/UploadFileResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/submit': - post: - tags: - - Submission - summary: Submit a Message for Delivery - description: Use this method to send emails from a user account - operationId: submitMessage - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/SubmitMessageRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SubmitMessageResponse' - parameters: - - name: user - in: path - description: Users unique ID - required: true - schema: - type: string - '/users/{user}/2fa/totp/check': - post: - tags: - - TwoFactorAuth - summary: Validate TOTP Token - description: This method checks if a TOTP token provided by a User is valid for authentication - operationId: checkTotp2FA - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CheckTotp2FARequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/2fa': - delete: - tags: - - TwoFactorAuth - summary: Disable 2FA - description: This method disables all 2FA mechanisms a user might have set up - operationId: disable2FA - parameters: - - name: sess - in: query - description: Session identifier for the logs - schema: - type: string - - name: ip - in: query - description: IP address for the logs - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/2fa/custom': - delete: - tags: - - TwoFactorAuth - summary: Disable custom 2FA for a user - description: 'This method disables custom 2FA. If it was the only 2FA set up, then account password for IMAP/POP3/SMTP gets enabled again' - operationId: disableCustom2FA - parameters: - - name: sess - in: query - description: Session identifier for the logs - schema: - type: string - - name: ip - in: query - description: IP address for the logs - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - put: - tags: - - TwoFactorAuth - summary: Enable custom 2FA for a user - description: This method disables account password for IMAP/POP3/SMTP - operationId: enableCustom2FA - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/EnableCustom2FARequest' - required: false - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/2fa/totp': - delete: - tags: - - TwoFactorAuth - summary: Disable TOTP auth - description: This method disables TOTP for a user. Does not affect other 2FA mechanisms a user might have set up - operationId: disableTotp2FA - parameters: - - name: sess - in: query - description: Session identifier for the logs - schema: - type: string - - name: ip - in: query - description: IP address for the logs - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/2fa/totp/enable': - post: - tags: - - TwoFactorAuth - summary: Enable TOTP seed - description: This method enables TOTP for a user by verifying the seed value generated from 2fa/totp/setup - operationId: enableTotp2FA - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/EnableTotp2FARequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{user}/2fa/totp/setup': - post: - tags: - - TwoFactorAuth - summary: Generate TOTP seed - description: This method generates TOTP seed and QR code for 2FA. User needs to verify the seed value using 2fa/totp/enable endpoint - operationId: setupTotp2FA - requestBody: - description: This method generates TOTP seed and QR code for 2FA. User needs to verify the seed value using 2fa/totp/enable endpoint - content: - application/json: - schema: - $ref: '#/components/schemas/SetupTotp2FARequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SetupTotp2FAResponse' - parameters: - - name: user - in: path - description: ID of the User - required: true - schema: - type: string - '/users/{id}': - delete: - tags: - - Users - summary: Delete a User - description: 'This method deletes user and address entries from DB and schedules a background task to delete messages. You can call this method several times even if the user has already been deleted, in case there are still some pending messages.' - operationId: deleteUser - parameters: - - name: deleteAfter - description: Delete user entry from registry but keep all user data until provided date. User account is fully recoverable up to that date. - in: query - schema: - type: string - format: date-time - - name: sess - in: query - description: Session identifier for the logs - schema: - type: string - - name: ip - in: query - description: IP address for the logs - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - get: - tags: - - Users - summary: Request User information - operationId: getUser - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetUserResponse' - put: - tags: - - Users - summary: Update User information - operationId: updateUser - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UpdateUserRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: id - in: path - description: Users unique ID. - required: true - schema: - type: string - '/users/{id}/updates': - get: - tags: - - Users - summary: Open change stream - description: This api call returns an EventSource response. Listen on this stream to get notifications about changes in messages and mailboxes. Returned events are JSON encoded strings - operationId: getUpdates - responses: - '200': - description: Success - content: - text/event-stream: - schema: - type: string - description: Success - parameters: - - name: id - in: path - description: Users unique ID. - required: true - schema: - type: string - '/users/resolve/{username}': - get: - tags: - - Users - summary: Resolve ID for a username - operationId: resolveUser - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/ResolveIdResponse' - parameters: - - name: username - in: path - description: 'Username of the User. Alphanumeric value. Must start with a letter, dots are allowed but informational only ("user.name" is the same as "username")' - required: true - schema: - type: string - - '/users/{id}/restore': - get: - tags: - - Users - summary: Return recovery info for a deleted user - operationId: restoreUserInfo - parameters: - - name: sess - in: query - description: Session identifier for the logs - schema: - type: string - - name: ip - in: query - description: IP address for the logs - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/RecoverInfoResponse' - post: - tags: - - Users - summary: Cancel user deletion task - description: 'Use this endpoint to cancel a timed deletion task scheduled by `DELETE /user/{id}`. If user data is not yet deleted then the account is fully recovered, except any email addresses that might have been already recycled' - operationId: restoreUser - - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/UserRestoreRequest' - required: true - - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: id - in: path - description: Users unique ID. - required: true - schema: - type: string - /users: - get: - tags: - - Users - summary: List registered Users - operationId: getUsers - parameters: - - name: query - in: query - description: Partial match of username or default email address - schema: - type: string - - name: forward - in: query - description: Partial match of a forward email address or URL - schema: - type: string - - name: tags - in: query - description: Comma separated list of tags. The User must have at least one to be set - schema: - type: string - - name: requiredTags - in: query - description: Comma separated list of tags. The User must have all listed tags to be set - schema: - type: string - - name: metaData - in: query - description: 'If true, then includes metaData in the response' - schema: - type: boolean - - name: internalData - in: query - description: 'If true, then includes internalData in the response. Not shown for user-role tokens.' - schema: - type: boolean - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetUsersResponse' - post: - tags: - - Users - summary: Create new user - operationId: createUser - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/CreateUserRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateUserResponse' - '/users/{user}/quota/reset': - post: - tags: - - Users - summary: Recalculate User quota - description: 'This method recalculates quota usage for a User. Normally not needed, only use it if quota numbers are way off. This method is not transactional, so if the user is currently receiving new messages then the resulting value is not exact.' - operationId: recalculateQuota - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/RecalculateQuotaResponse' - parameters: - - name: user - in: path - description: Users unique ID. - required: true - schema: - type: string - /quota/reset: - post: - tags: - - Users - summary: Recalculate Quota for all Users - description: 'This method recalculates quota usage for all Users. Normally not needed, only use it if quota numbers are way off. This method is not transactional, so if the user is currently receiving new messages then the resulting value is not exact.' - operationId: recalculateQuotaAllUsers - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - '/users/{id}/logout': - put: - tags: - - Users - summary: Log out User - description: This method logs out all user sessions in IMAP - operationId: logoutUser - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/LogoutUserRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: id - in: path - description: Users unique ID. - required: true - schema: - type: string - '/users/{id}/password/reset': - post: - tags: - - Users - summary: Reset password for a User - description: This method generates a new temporary password for a User. Additionally it removes all two-factor authentication settings - operationId: resetUserPassword - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/ResetUserPasswordRequest' - required: false - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/ResetUserPasswordResponse' - parameters: - - name: id - in: path - description: Users unique ID. - required: true - schema: - type: string - - '/webhooks/{webhook}': - delete: - tags: - - Webhooks - summary: Delete a webhook - operationId: deleteWebhook - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - parameters: - - name: webhook - in: path - description: ID of the Webhook - required: true - schema: - type: string - /webhooks: - get: - tags: - - Webhooks - summary: List registered Webhooks - operationId: getWebhooks - parameters: - - name: type - in: query - description: 'Prefix or exact match. Prefix match must end with ".*", eg "channel.*". Use "*" for all types' - required: true - schema: - type: string - - name: user - in: query - description: User ID - schema: - type: string - - name: limit - in: query - description: How many records to return - schema: - type: number - - name: page - in: query - description: 'Current page number. Informational only, page numbers start from 1' - schema: - type: number - - name: next - in: query - description: 'Cursor value for next page, retrieved from nextCursor response value' - schema: - type: string - - name: previous - in: query - description: 'Cursor value for previous page, retrieved from previousCursor response value' - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetWebhooksResponse' - post: - tags: - - Webhooks - summary: Create new Webhook - description: Create new webhook - operationId: createWebhook - requestBody: - description: Create new webhook - content: - application/json: - schema: - $ref: '#/components/schemas/CreateWebhookRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateWebhookResponse' - - '/settings/{setting}': - get: - tags: - - Settings - summary: Get Setting value - operationId: getSetting - parameters: - - name: sess - in: query - description: Session identifier for the logs - schema: - type: string - - name: ip - in: query - description: IP address for the logs - schema: - type: string - - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetSettingResponse' - - post: - tags: - - Settings - summary: Create or Update Setting - description: Create a new or update an existing setting - operationId: createSetting - requestBody: - description: Create or Update Setting - content: - application/json: - schema: - $ref: '#/components/schemas/CreateSettingRequest' - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/CreateSettingResponse' - - delete: - tags: - - Settings - summary: Delete a setting - operationId: deleteSetting - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/SuccessResponse' - - parameters: - - name: setting - in: path - description: Key of the Setting - required: true - schema: - type: string - - /settings: - get: - tags: - - Settings - summary: List registered Settings - operationId: getSettings - parameters: - - name: filter - in: query - description: 'Optional partial match of the Setting key' - schema: - type: string - - name: sess - in: query - description: Session identifier for the logs - schema: - type: string - - name: ip - in: query - description: IP address for the logs - schema: - type: string - - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/GetSettingsResponse' - -components: - schemas: - AddressLimits: - required: - - forwards - type: object - properties: - forwards: - $ref: '#/components/schemas/Forwards' - description: Account limits and usage - AutoreplyInfo: - required: - - status - - name - - subject - - text - - html - type: object - properties: - status: - type: boolean - description: 'If true, then autoreply is enabled for this address' - name: - type: string - description: 'Name that is used for the From: header in autoreply message' - subject: - type: string - description: Autoreply subject line - text: - type: string - description: Autoreply plaintext content - html: - type: string - description: Autoreply HTML content - description: Autoreply information - Autoreply: - type: object - properties: - status: - type: boolean - description: 'If true, then autoreply is enabled for this address' - start: - type: string - format: date-time - description: Either a date string or boolean false to disable start time checks - end: - type: string - format: date-time - description: Either a date string or boolean false to disable end time checks - name: - type: string - description: 'Name that is used for the From: header in autoreply message' - subject: - type: string - description: Autoreply subject line - text: - type: string - description: Autoreply plaintext content - html: - type: string - description: Autoreply HTML content - description: Autoreply information - LastUse: - required: - - time - - event - type: object - properties: - time: - type: string - description: Datestring of last use or false if password has not been used - format: date-time - event: - type: string - description: Event ID of the security log for the last authentication - description: Information about last use - ContentType: - required: - - value - - params - type: object - properties: - value: - type: string - description: 'MIME type of the message, eg. "multipart/mixed"' - params: - type: object - description: An object with Content-Type params as key-value pairs - description: Parsed Content-Type header. Usually needed to identify encrypted messages and such - DnsTxt: - required: - - name - - value - type: object - properties: - name: - type: string - description: Is the domain name of TXT - value: - type: string - description: Is the value of TXT - description: Value for DNS TXT entry - Query: - type: object - properties: - from: - type: string - description: 'Partial match for the From: header (case insensitive)' - to: - type: string - description: 'Partial match for the To:/Cc: headers (case insensitive)' - subject: - type: string - description: 'Partial match for the Subject: header (case insensitive)' - listId: - type: string - description: 'Partial match for the List-ID: header (case insensitive)' - text: - type: string - description: Fulltext search against message text - ha: - type: boolean - description: Does a message have to have an attachment or not - size: - type: number - description: 'Message size in bytes. If the value is a positive number then message needs to be larger, if negative then message needs to be smaller than abs(size) value' - description: Rules that a message must match - Action: - type: object - properties: - seen: - type: boolean - description: If true then mark matching messages as Seen - flag: - type: boolean - description: If true then mark matching messages as Flagged - delete: - type: boolean - description: If true then do not store matching messages - spam: - type: boolean - description: If true then store matching messags to Junk Mail folder - mailbox: - type: string - description: Mailbox ID to store matching messages to - targets: - type: array - items: - type: string - description: 'An array of forwarding targets. The value could either be an email address or a relay url to next MX server ("smtp://mx2.zone.eu:25") or an URL where mail contents are POSTed to' - description: Action to take with a matching message - SpecialUse: - enum: - - \Drafts - - \Junk - - \Sent - - \Trash - type: string - description: 'Either special use identifier or null. One of \Drafts, \Junk, \Sent or \Trash' - Envelope: - required: - - from - - rcpt - type: object - properties: - from: - type: string - description: Address from MAIL FROM - rcpt: - $ref: '#/components/schemas/Rcpt' - description: SMTP envelope (if available) - Rcpt: - required: - - value - - formatted - type: object - properties: - value: - type: string - description: RCPT TO address as provided by SMTP client - formatted: - type: string - description: Normalized RCPT address - description: Array of addresses from RCPT TO (should have just one normally) - Address: - required: - - name - - address - type: object - properties: - name: - type: string - description: Name of the sender/recipient - address: - type: string - description: Address of the sender/recipient - AddressOptionalName: - required: - - address - type: object - properties: - name: - type: string - description: Name of the sender - address: - type: string - description: Address of the sender - List: - required: - - id - - unsubscribe - type: object - properties: - id: - type: string - description: Value from List-ID header - unsubscribe: - type: string - description: Value from List-Unsubscribe header - description: If set then this message is from a mailing list - - Outbound: - required: - - queueId - - entries - type: object - properties: - queueId: - type: string - description: Queue ID - entries: - type: array - items: - $ref: '#/components/schemas/OutboundQueueEntry' - description: Queued recipients - OutboundQueueEntry: - required: - - seq - - recipient - type: object - properties: - seq: - type: string - description: Queue target ID - recipient: - type: string - description: Target recipient - sendingZone: - type: string - description: Zone ID in ZoneMTA - queued: - type: string - description: ISO Date of the expected delivery time - Attachments: - required: - - id - - filename - - contentType - - disposition - - transferEncoding - - related - - sizeKb - type: object - properties: - id: - type: string - description: Attachment ID - hash: - type: string - description: SHA-256 hash of the contents of the attachment - filename: - type: string - description: Filename of the attachment - contentType: - type: string - description: MIME type - disposition: - type: string - description: Attachment disposition - transferEncoding: - type: string - description: Which transfer encoding was used (actual content when fetching attachments is not encoded) - related: - type: boolean - description: Was this attachment found from a multipart/related node. This usually means that this is an embedded image - sizeKb: - type: number - description: Approximate size of the attachment in kilobytes - description: List of attachments for this message - VerificationResults: - required: - - tls - - spf - - dkim - type: object - properties: - tls: - $ref: '#/components/schemas/Tls' - spf: - type: object - description: Domain name (either MFROM or HELO) of verified SPF or false if no SPF match was found - dkim: - type: object - description: Domain name of verified DKIM signature or false if no valid signature was found - description: 'Security verification info if message was received from MX. If this property is missing then do not automatically assume invalid TLS, SPF or DKIM.' - Tls: - required: - - name - - version - type: object - properties: - name: - type: object - description: 'Cipher name, eg "ECDHE-RSA-AES128-GCM-SHA256"' - version: - type: object - description: 'TLS version, eg "TLSv1/SSLv3"' - description: TLS information. Value is false if TLS was not used - Files: - required: - - id - - filename - - contentType - - size - type: object - properties: - id: - type: string - description: File ID - filename: - type: string - description: Filename of the attached file - contentType: - type: string - description: MIME type - size: - type: number - description: MIME type - description: 'List of files added to this message as attachments. Applies to Drafts, normal messages do not have this property. Needed to prevent uploading the same attachment every time a draft is updated' - Header: - required: - - key - - value - type: object - properties: - key: - type: string - description: Header key ('X-Mailer') - value: - type: string - description: Header value ('My Awesome Mailing Service') - AttachmentsUpload: - required: - - content - type: object - properties: - content: - type: string - description: Base64 encoded attachment content - filename: - type: string - description: Attachment filename - contentType: - type: string - description: MIME type for the attachment file - contentDisposition: - type: string - description: Which Content-Disposition value to use - enum: - - inline - - attachment - example: attachment - default: null - cid: - type: string - description: Content-ID value if you want to reference to this attachment from HTML formatted message - ReferenceWithAttachments: - required: - - mailbox - - id - - action - - attachments - type: object - properties: - mailbox: - type: string - description: Mailbox ID - id: - type: number - description: Message ID in Mailbox - action: - type: string - description: 'Either reply, replyAll or forward' - attachments: - type: array - items: - type: string - description: "If true, then includes all attachments from the original message. If it is an array of attachment ID's includes attachments from the list" - description: Optional referenced email. If uploaded message is a reply draft and relevant fields are not provided then these are resolved from the message to be replied to - Message: - required: - - id - - mailbox - type: object - properties: - id: - type: number - description: Message ID in mailbox - mailbox: - type: string - description: Mailbox ID the message was stored into - size: - type: number - description: Size of the RFC822 formatted email - description: Message information - title: '' - Forwarded: - required: - - seq - - type - - value - type: object - properties: - seq: - type: string - description: Sequence ID - type: - type: string - description: Target type - value: - type: string - description: Target address - Reference: - required: - - mailbox - - id - - action - type: object - properties: - mailbox: - type: string - description: Mailbox ID - id: - type: number - description: Message ID in Mailbox - action: - type: string - description: 'Either reply, replyAll or forward' - description: Optional referenced email. If submitted message is a reply and relevant fields are not provided then these are resolved from the message to be replied to - EnvelopeUpload: - type: object - properties: - from: - $ref: '#/components/schemas/AddressOptionalName' - to: - type: array - items: - $ref: '#/components/schemas/AddressOptionalName' - description: Recipients information - description: SMTP envelope. If not provided then resolved either from message headers or from referenced message - MessageWithQueueId: - required: - - mailbox - - id - - queueId - type: object - properties: - mailbox: - type: string - description: Mailbox ID the message was stored to - id: - type: number - description: Message ID in Mailbox - queueId: - type: string - description: Queue ID in MTA - description: Information about submitted Message - KeyInfo: - required: - - name - - address - - fingerprint - type: object - properties: - name: - type: string - description: Name listed in public key - address: - type: string - description: E-mail address listed in public key - fingerprint: - type: string - description: Fingerprint of the public key - description: Information about public key or false if key is not available - UserLimits: - required: - - quota - - recipients - - forwards - - received - - imapUpload - - imapDownload - - pop3Download - type: object - properties: - quota: - $ref: '#/components/schemas/Quota' - recipients: - $ref: '#/components/schemas/Recipients' - filters: - $ref: '#/components/schemas/Filters' - forwards: - $ref: '#/components/schemas/Forwards' - received: - $ref: '#/components/schemas/Received' - imapUpload: - $ref: '#/components/schemas/ImapUpload' - imapDownload: - $ref: '#/components/schemas/ImapDownload' - pop3Download: - $ref: '#/components/schemas/Pop3Download' - imapMaxConnections: - $ref: '#/components/schemas/ImapMaxConnections' - description: Account limits and usage - Quota: - required: - - allowed - - used - type: object - properties: - allowed: - type: number - description: Allowed quota of the user in bytes - used: - type: number - description: Space used in bytes - description: Quota usage limits - Recipients: - required: - - allowed - - used - - ttl - type: object - properties: - allowed: - type: number - description: How many messages per 24 hours can be sent - used: - type: number - description: How many messages are sent during current 24 hour period - ttl: - type: number - description: Time until the end of current 24 hour period - description: Sending quota - Filters: - required: - - allowed - - used - type: object - properties: - allowed: - type: number - description: How many filters are allowed - used: - type: number - description: How many filters have been created - description: Sending quota - Forwards: - required: - - allowed - - used - - ttl - type: object - properties: - allowed: - type: number - description: How many messages per 24 hours can be forwarded - used: - type: number - description: How many messages are forwarded during current 24 hour period - ttl: - type: number - description: Time until the end of current 24 hour period - description: Forwarding quota - Received: - required: - - allowed - - used - - ttl - type: object - properties: - allowed: - type: number - description: How many messages per 1 hour can be received - used: - type: number - description: How many messages are received during current 1 hour period - ttl: - type: number - description: Time until the end of current 1 hour period - description: Receiving quota - ImapUpload: - required: - - allowed - - used - - ttl - type: object - properties: - allowed: - type: number - description: 'How many bytes per 24 hours can be uploaded via IMAP. Only message contents are counted, not protocol overhead.' - used: - type: number - description: How many bytes are uploaded during current 24 hour period - ttl: - type: number - description: Time until the end of current 24 hour period - description: IMAP upload quota - ImapDownload: - required: - - allowed - - used - - ttl - type: object - properties: - allowed: - type: number - description: 'How many bytes per 24 hours can be downloaded via IMAP. Only message contents are counted, not protocol overhead.' - used: - type: number - description: How many bytes are downloaded during current 24 hour period - ttl: - type: number - description: Time until the end of current 24 hour period - description: IMAP download quota - Pop3Download: - required: - - allowed - - used - - ttl - type: object - properties: - allowed: - type: number - description: 'How many bytes per 24 hours can be downloaded via POP3. Only message contents are counted, not protocol overhead.' - used: - type: number - description: How many bytes are downloaded during current 24 hour period - ttl: - type: number - description: Time until the end of current 24 hour period - description: POP3 download quota - ImapMaxConnections: - required: - - allowed - - used - type: object - properties: - allowed: - type: number - description: How many parallel IMAP connections are permitted - used: - type: number - description: How many parallel IMAP connections are currenlty in use - Mailboxes: - type: object - properties: - sent: - type: string - description: Path of Sent Mail folder - junk: - type: string - description: Path of spam folder - drafts: - type: string - description: Path of drafts folder - trash: - type: string - description: Path of trash folder - description: Optional names for special mailboxes - SuccessResponse: - required: - - success - type: object - properties: - success: - type: boolean - description: Indicates successful response - UploadMessageRequest: - type: object - properties: - unseen: - type: boolean - description: Is the message unseen or not - draft: - type: boolean - description: Is the message a draft or not - flagged: - type: boolean - description: Is the message flagged or not - raw: - type: string - description: 'base64 encoded message source. Alternatively, you can provide this value as POST body by using message/rfc822 MIME type. If raw message is provided then it overrides any other mail configuration' - from: - $ref: '#/components/schemas/Address' - to: - type: array - items: - $ref: '#/components/schemas/AddressOptionalName' - description: 'Addresses for the To: header' - cc: - type: array - items: - $ref: '#/components/schemas/AddressOptionalName' - description: 'Addresses for the Cc: header' - bcc: - type: array - items: - $ref: '#/components/schemas/AddressOptionalName' - description: 'Addresses for the Bcc: header' - subject: - type: string - description: Message subject. If not then resolved from Reference message - text: - type: string - description: Plaintext message - html: - type: string - description: HTML formatted message - headers: - type: array - items: - $ref: '#/components/schemas/Header' - description: Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automaticall y - files: - type: array - items: - type: string - description: Attachments as storage file IDs. NB! When retrieving message info then an array of objects is returned. When uploading a message then an array of IDs is used. - attachments: - type: array - items: - $ref: '#/components/schemas/AttachmentsUpload' - description: Attachments for the message - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - reference: - $ref: '#/components/schemas/ReferenceWithAttachments' - bimi: - type: object - description: Marks BIMI verification as passed for a domain. NB! BIMI record and logo files for the domain must be valid. - required: - - domain - properties: - domain: - type: string - description: Domain name for the BIMI record. It does not have to be the same as the From address. - selector: - type: string - description: Optional BIMI selector - replacePrevious: - type: object - description: If set, then deletes a previous message when storing the new one. Useful when uploading a new Draft message. - required: - - id - properties: - mailbox: - type: string - description: Mailbox ID. Defaults to the mailbox of the uploaded message. - id: - type: number - description: Message ID in Mailbox - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - ForwardStoredMessageRequest: - type: object - properties: - target: - type: number - description: Number of original forwarding target - addresses: - type: array - description: An array of additional forward targets - items: - type: string - UploadMessageResponse: - required: - - success - - message - type: object - properties: - success: - type: boolean - description: Indicates successful response - message: - $ref: '#/components/schemas/Message' - previousDeleted: - type: boolean - description: Set if replacing a previous message was requested - ForwardStoredMessageResponse: - required: - - success - - queueId - - forwarded - type: object - properties: - success: - type: boolean - description: Indicates successful response - queueId: - type: string - description: Message ID in outbound queue - forwarded: - type: array - items: - $ref: '#/components/schemas/Forwarded' - description: Information about forwarding targets - UploadFileResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: object - description: File ID - GetForwardedAddressResponse: - required: - - success - - id - - address - - name - - targets - - limits - - autoreply - - created - - tags - - forwardedDisabled - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Address - address: - type: string - description: E-mail address string - name: - type: string - description: Identity name - targets: - type: array - items: - type: string - description: List of forwarding targets - limits: - $ref: '#/components/schemas/AddressLimits' - autoreply: - $ref: '#/components/schemas/AutoreplyInfo' - created: - type: string - description: Datestring of the time the address was created - format: date-time - tags: - type: array - items: - type: string - description: List of tags associated with the Address - forwardedDisabled: - type: boolean - description: If true then the forwarded address is disabled - GetUserAddressResponse: - required: - - success - - id - - name - - address - - tags - - main - - created - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Address - name: - type: string - description: Identity name - address: - type: string - description: E-mail address string - tags: - type: array - items: - type: string - description: List of tags associated with the Address - metaData: - type: object - description: Metadata object (if available) - internalData: - type: object - description: 'Internal metadata object (if available), not included for user-role requests' - main: - type: boolean - description: Indicates if this is the default address for the User - created: - type: string - description: Datestring of the time the address was created - format: date-time - ResolveAddressResponse: - required: - - success - - id - - address - - name - - user - - targets - - limits - - autoreply - - tags - - created - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Address - address: - type: string - description: E-mail address string - name: - type: string - description: Identity name - user: - type: string - description: ID of the user if the address belongs to a User - targets: - type: array - items: - type: string - description: List of forwarding targets if this is a Forwarded address - limits: - $ref: '#/components/schemas/AddressLimits' - autoreply: - $ref: '#/components/schemas/AutoreplyInfo' - tags: - type: array - items: - type: string - description: List of tags associated with the Address - created: - type: string - description: Datestring of the time the address was created - format: date-time - GetAddressesResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetAddressesResult' - description: Address listing - GetUserAddressesResponse: - required: - - success - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - results: - type: array - items: - $ref: '#/components/schemas/GetUserAddressesResult' - description: Address listing - CreateUserAddressResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Address - GetUserAddressesregisterResponse: - required: - - success - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - results: - type: array - items: - $ref: '#/components/schemas/GetUserAddressesregisterResult' - description: Address listing - CreateForwardedAddressResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Address - GetASPResponse: - required: - - success - - id - - description - - scopes - - lastUse - - created - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Application Password - description: - type: string - description: Description - scopes: - type: array - items: - $ref: '#/components/schemas/AspScopes' - description: Allowed scopes for the Application Password - lastUse: - $ref: '#/components/schemas/LastUse' - created: - type: string - description: Datestring - format: date-time - GetASPsResponse: - required: - - success - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - results: - type: array - items: - $ref: '#/components/schemas/GetASPsResult' - description: Event listing - CreateASPResponse: - required: - - success - - id - - password - - mobileconfig - type: object - properties: - success: - type: boolean - description: Indicates successful response - example: true - id: - type: string - description: ID of the Application Password - example: '60b91b5cc419d97445f8e57d' - password: - type: string - description: 'Application Specific Password. Generated password is whitespace agnostic, so it could be displayed to the client as "abcd efgh ijkl mnop" instead of "abcdefghijklmnop"' - example: 'aaaaaaaaaaaaaaaa' - mobileconfig: - type: string - description: Base64 encoded mobileconfig file. Generated profile file should be sent to the client with Content-Type value of application/x-apple-aspen-config. - GetArchivedMessagesResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetArchivedMessagesResult' - description: Message listing - RestoreMessageResponse: - required: - - success - - mailbox - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - mailbox: - type: string - description: Maibox ID the message was moved to - id: - type: number - description: New ID for the Message - GetAuditResponse: - required: - - success - - user - - expires - type: object - properties: - success: - type: boolean - description: Indicates successful response - user: - type: string - description: Users unique ID. - start: - type: string - description: Start time as ISO date - format: date-time - end: - type: string - description: End time as ISO date - format: date-time - expires: - type: string - description: Expiration date. Audit data is deleted after this date - format: date-time - CreateAuditResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID for the created Audit - AuthenticateResponse: - required: - - success - - id - - username - - scope - - require2fa - - requirePasswordChange - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of authenticated User - username: - type: string - description: Username of authenticated User - scope: - type: string - description: The scope this authentication is valid for - require2fa: - type: array - items: - type: string - description: List of enabled 2FA mechanisms - requirePasswordChange: - type: boolean - description: Indicates if account hassword has been reset and should be replaced - token: - type: string - description: If access token was requested then this is the value to use as access token when making API requests on behalf of logged in user. - GetAuthlogResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetAuthlogResult' - description: Event listing - GetAuthlogEventResponse: - required: - - success - - id - - action - - result - - created - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Event - action: - type: string - description: Action identifier - result: - type: string - description: Did the action succeed - sess: - type: string - description: Session identifier - ip: - type: string - description: IP address of the Event - created: - type: string - description: Datestring of the Event time - format: date-time - - GetAutoreplyResponse: - type: object - properties: - success: - type: boolean - description: Indicates successful response - status: - type: boolean - description: Is the autoreply enabled (true) or not (false) - name: - type: string - description: 'Name that is used for the From: header in autoreply message' - subject: - type: string - description: Subject line for the autoreply. If empty then uses subject of the original message - html: - type: string - description: HTML formatted content of the autoreply message - text: - type: string - description: Plaintext formatted content of the autoreply message - start: - type: string - description: Datestring of the start of the autoreply - format: date-time - end: - type: string - description: Datestring of the end of the autoreply - format: date-time - required: - - success - - status - - name - - subject - - html - - text - - start - - end - - GetDkimKeyResponse: - required: - - success - - id - - domain - - selector - - description - - fingerprint - - publicKey - - dnsTxt - - created - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the DKIM - domain: - type: string - description: The domain this DKIM key applies to - selector: - type: string - description: DKIM selector - description: - type: string - description: Key description - fingerprint: - type: string - description: Key fingerprint (SHA1) - publicKey: - type: string - description: 'Public key in DNS format (no prefix/suffix, single line)' - dnsTxt: - $ref: '#/components/schemas/DnsTxt' - created: - type: string - description: Datestring - format: date-time - - GetDkimKeysResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetDkimKeysResult' - description: DKIM listing - - GetTLSCertsResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - example: 541 - page: - type: number - description: Current page number. Derived from page query argument - example: 1 - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - example: false - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - example: 'eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0' - results: - type: array - items: - $ref: '#/components/schemas/GetTLSCertResult' - description: Certificate listing - - UpdateDkimKeyResponse: - required: - - success - - id - - domain - - selector - - description - - fingerprint - - publicKey - - dnsTxt - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the DKIM - domain: - type: string - description: The domain this DKIM key applies to - selector: - type: string - description: DKIM selector - description: - type: string - description: Key description - fingerprint: - type: string - description: Key fingerprint (SHA1) - publicKey: - type: string - description: 'Public key in DNS format (no prefix/suffix, single line)' - dnsTxt: - $ref: '#/components/schemas/DnsTxt' - - UpdateTLSCertResponse: - required: - - success - - id - - servername - - fingerprint - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the certificate - example: '609d201236d1d936948f23b1' - servername: - type: string - description: The server name this certificate applies to - example: 'imap.example.com' - description: - type: string - description: Key description - example: 'Some notes about this certificate' - fingerprint: - type: string - description: Key fingerprint (SHA1) - example: '59:8b:ed:11:5b:4f:ce:b4:e5:1a:2f:35:b1:6f:7d:93:40:c8:2f:9c:38:3b:cd:f4:04:92:a1:0e:17:2c:3f:f3' - expires: - type: string - description: Certificate expiration time - example: '2021-06-26T21:55:55.000Z' - format: date-time - altNames: - type: array - description: SAN servernames listed in the certificate - items: - type: string - example: ['example.com', 'www.example.com'] - - ResolveIdResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - example: true - id: - type: string - description: Unique ID (24 byte hex) - example: '609d201236d1d936948f23b1' - - RecoverInfoResponse: - type: object - required: - - success - - user - - username - - storageUsed - - tags - - deleted - - recoverableAddresses - properties: - success: - type: boolean - description: Indicates successful response - example: true - user: - type: string - description: ID of the deleted User - example: '609d201236d1d936948f23b1' - username: - type: string - description: Username of the User - example: andris - storageUsed: - type: number - description: Calculated quota usage for the user - example: 2423070 - tags: - type: array - items: - type: string - description: List of tags associated with the User - example: ['domain:andrisreinman.com'] - deleted: - type: string - description: Datestring of the time the user was deleted - format: date-time - recoverableAddresses: - type: array - items: - type: string - description: List of email addresses that can be restored - example: ['andris@andrisreinman.com'] - - GetAllowedDomainResponse: - required: - - success - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - results: - type: array - items: - $ref: '#/components/schemas/GetAllowedDomainResult' - description: Domain list - CreateAllowedDomainResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID for the created record - GetBlockedDomainResponse: - required: - - success - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - results: - type: array - items: - $ref: '#/components/schemas/GetBlockedDomainResult' - description: Domain list - CreateBlockedDomainResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID for the created record - GetDomainAliasResponse: - required: - - success - - id - - alias - - domain - - created - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Alias - alias: - type: string - description: Alias domain - domain: - type: string - description: Alias target - created: - type: string - description: Datestring of the time the alias was created - format: date-time - GetDomainAliasesResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetDomainAliasesResult' - description: Aliases listing - - CreateDomainAliasResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Domain Alias - - GetFilterResponse: - required: - - success - - id - - name - - query - - action - - disabled - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID for the Filter - name: - type: string - description: Name of the Filter - query: - $ref: '#/components/schemas/Query' - action: - $ref: '#/components/schemas/Action' - disabled: - type: boolean - description: 'If true, then this filter is ignored' - metaData: - type: object - description: Custom metadata value - UpdateFilterResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID for the created Filter - GetAllFiltersResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetAllFiltersResult' - description: Address listing - GetFiltersResponse: - required: - - success - - limits - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - limits: - type: object - description: Filter usage limits for the user account - properties: - allowed: - type: number - description: How many filters are allowed - used: - type: number - description: How many filters have been created - results: - type: array - items: - $ref: '#/components/schemas/GetFiltersResult' - description: Filter description - GetMailboxResponse: - required: - - success - - id - - name - - path - - specialUse - - modifyIndex - - subscribed - - hidden - - total - - unseen - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: Mailbox ID - name: - type: string - description: Name for the mailbox (unicode string) - path: - type: string - description: 'Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)' - specialUse: - $ref: '#/components/schemas/SpecialUse' - modifyIndex: - type: number - description: Modification sequence number. Incremented on every change in the mailbox. - subscribed: - type: boolean - description: Mailbox subscription status. IMAP clients may unsubscribe from a folder. - hidden: - type: boolean - description: Is the folder hidden or not - total: - type: number - description: How many messages are stored in this mailbox - unseen: - type: number - description: How many unseen messages are stored in this mailbox - GetMailboxesResponse: - required: - - success - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - results: - type: array - items: - $ref: '#/components/schemas/GetMailboxesResult' - description: List of user mailboxes - CreateMailboxResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: Mailbox ID - GetMessageResponse: - required: - - success - - id - - mailbox - - user - - envelope - - thread - - from - - subject - - messageId - - date - - seen - - deleted - - flagged - - draft - - contentType - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: number - description: ID of the Message - mailbox: - type: string - description: ID of the Mailbox - user: - type: string - description: ID of the User - envelope: - $ref: '#/components/schemas/Envelope' - thread: - type: string - description: ID of the Thread - from: - $ref: '#/components/schemas/Address' - to: - $ref: '#/components/schemas/Address' - cc: - $ref: '#/components/schemas/Address' - bcc: - $ref: '#/components/schemas/Address' - subject: - type: string - description: Message subject - messageId: - type: string - description: Message-ID header - date: - type: string - description: Date string from header - format: date-time - idate: - type: string - description: Date string of receive time - format: date-time - list: - $ref: '#/components/schemas/List' - expires: - type: string - description: 'Datestring, if set then indicates the time after this message is automatically deleted' - seen: - type: boolean - description: Does this message have a \Seen flag - deleted: - type: boolean - description: Does this message have a \Deleted flag - flagged: - type: boolean - description: Does this message have a \Flagged flag - draft: - type: boolean - description: Does this message have a \Draft flag - html: - type: array - items: - type: string - description: 'An array of HTML string. Every array element is from a separate mime node, usually you would just join these to a single string' - text: - type: string - description: Plaintext content of the message - attachments: - type: array - items: - $ref: '#/components/schemas/Attachments' - description: Attachments for the message - verificationResults: - $ref: '#/components/schemas/VerificationResults' - bimi: - type: object - description: BIMI logo info. If logo validation failed in any way, then this property is not set - properties: - certified: - type: boolean - description: If true, then this logo is from a VMC file - url: - type: string - description: URL of the resource the logo was retrieved from - image: - type: string - description: Data URL for the SVG image - contentType: - $ref: '#/components/schemas/ContentType' - metaData: - type: object - description: Custom metadata object set for this message - reference: - type: object - description: Referenced message info - files: - $ref: '#/components/schemas/Files' - outbound: - type: array - items: - $ref: '#/components/schemas/Outbound' - description: Outbound queue entries - DeleteMessagesInMailboxResponse: - required: - - success - - deleted - type: object - properties: - success: - type: boolean - description: Indicates successful response - deleted: - type: number - description: Indicates count of deleted messages - GetMessagesResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetMessagesResult' - description: Message listing - UpdateMessageResponse: - required: - - success - - id - - updated - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: array - items: - type: object - description: If messages were moved then lists new ID values. Array entry is an array with first element pointing to old ID and second to new ID - updated: - type: number - description: 'If messages were not moved, then indicates the number of updated messages' - SearchMessagesResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetMessagesResult' - description: Message listing - SubmitStoredMessageResponse: - type: object - properties: - success: - type: boolean - description: Indicates successful response - queueId: - type: string - description: Message ID in outbound queue - message: - $ref: '#/components/schemas/Message' - required: - - success - - queueId - GetFilesResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetFilesResult' - description: File listing - SubmitMessageResponse: - type: object - properties: - success: - type: boolean - description: Indicates successful response - message: - $ref: '#/components/schemas/MessageWithQueueId' - required: - - success - - message - SetupTotp2FAResponse: - required: - - success - - seed - - qrcode - type: object - properties: - success: - type: boolean - description: Indicates successful response - seed: - type: string - description: Generated TOTP seed value - qrcode: - type: string - description: Base64 encoded QR code - GetUserResponse: - required: - - success - - id - - username - - name - - address - - retention - - enabled2fa - - autoreply - - encryptMessages - - encryptForwarded - - pubKey - - keyInfo - - metaData - - internalData - - targets - - spamLevel - - limits - - tags - - disabledScopes - - hasPasswordSet - - activated - - disabled - - suspended - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: Users unique ID (24 byte hex) - username: - type: string - description: Username of the User - name: - type: string - description: Name of the User - address: - type: string - description: Main email address of the User - retention: - type: number - description: Default retention time (in ms). false if not enabled - enabled2fa: - type: array - items: - type: string - description: List of enabled 2FA methods - autoreply: - type: boolean - description: Is autoreply enabled or not (start time may still be in the future or end time in the past) - encryptMessages: - type: boolean - description: If true then received messages are encrypted - encryptForwarded: - type: boolean - description: If true then forwarded messages are encrypted - pubKey: - type: string - description: Public PGP key for the User that is used for encryption - keyInfo: - $ref: '#/components/schemas/KeyInfo' - metaData: - type: object - description: Custom metadata object set for this user - internalData: - type: object - description: Custom interna metadata object set for this user. Not available for user-role tokens - targets: - type: array - items: - type: string - description: List of forwarding targets - spamLevel: - type: number - description: 'Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam' - limits: - $ref: '#/components/schemas/UserLimits' - tags: - type: array - items: - type: string - description: List of tags associated with the User - fromWhitelist: - type: array - items: - type: string - description: A list of additional email addresses this user can send mail from. Wildcard is allowed. - disabledScopes: - type: array - items: - $ref: '#/components/schemas/DisabledScopes' - description: Disabled scopes for this user - hasPasswordSet: - type: boolean - description: If true then the User has a password set and can authenticate - activated: - type: boolean - description: Is the account activated - disabled: - type: boolean - description: If true then the user can not authenticate or receive any new mail - suspended: - type: boolean - description: If true then the user can not authenticate - - GetUsersResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetUsersResult' - description: User listing - CreateUserResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID for the created User - RecalculateQuotaResponse: - required: - - success - - storageUsed - type: object - properties: - success: - type: boolean - description: Indicates successful response - storageUsed: - type: number - description: Calculated quota usage for the user - ResetUserPasswordResponse: - required: - - success - - password - type: object - properties: - success: - type: boolean - description: Indicates successful response - password: - type: string - description: Temporary password - - GetWebhooksResponse: - required: - - success - - total - - page - - previousCursor - - nextCursor - - results - type: object - properties: - success: - type: boolean - description: Indicates successful response - total: - type: number - description: How many results were found - page: - type: number - description: Current page number. Derived from page query argument - previousCursor: - type: string - description: Either a cursor string or false if there are not any previous results - nextCursor: - type: string - description: Either a cursor string or false if there are not any next results - results: - type: array - items: - $ref: '#/components/schemas/GetWebhooksResult' - description: Webhook listing - - CreateWebhookResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - id: - type: string - description: ID of the Webhook - - GetSettingResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - key: - type: string - description: Key of the Setting - value: - oneOf: - - type: string - - type: number - description: Setting value - - GetSettingsResponse: - required: - - success - - settings - type: object - properties: - success: - type: boolean - description: Indicates successful response - filter: - type: string - description: Partial match if requested - settings: - type: array - items: - $ref: '#/components/schemas/GetSettingsResult' - description: Setting listing - - CreateSettingResponse: - required: - - success - - id - type: object - properties: - success: - type: boolean - description: Indicates successful response - key: - type: string - description: Key of the Setting - - UpdateForwardedAddressRequest: - type: object - description: '' - properties: - address: - type: string - description: 'New address. Only affects normal addresses, special addresses that include * can not be changed' - name: - type: string - description: Identity name - targets: - type: array - description: 'An array of forwarding targets. The value could either be an email address or a relay url to next MX server ("smtp://mx2.zone.eu:25") or an URL where mail contents are POSTed to. If set then overwrites previous targets array' - items: - type: string - forwards: - type: number - description: Daily allowed forwarding count for this address - tags: - type: array - description: A list of tags associated with this address - items: - type: string - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - internalData: - description: 'Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens' - oneOf: - - type: object - - type: string - forwardedDisabled: - type: boolean - description: If true then disables forwarded address (stops forwarding messages) - autoreply: - $ref: '#/components/schemas/Autoreply' - UpdateUserAddressRequest: - type: object - properties: - name: - type: string - description: Identity name - address: - type: string - description: 'New address if you want to rename existing address. Only affects normal addresses, special addresses that include * can not be changed' - main: - type: boolean - description: Indicates if this is the default address for the User - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - internalData: - description: 'Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens' - oneOf: - - type: object - - type: string - tags: - type: array - description: A list of tags associated with this address - items: - type: string - required: - - main - CreateUserAddressRequest: - required: - - address - type: object - properties: - address: - type: string - description: E-mail Address - name: - type: string - description: Identity name - tags: - type: array - items: - type: string - description: A list of tags associated with this address - main: - type: boolean - description: Indicates if this is the default address for the User - allowWildcard: - type: boolean - description: 'If true then address value can be in the form of `*@example.com`, `*suffix@example.com` and `username@*`, otherwise using * is not allowed. Static suffix can be up to 32 characters long.' - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - internalData: - description: 'Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens' - oneOf: - - type: object - - type: string - CreateForwardedAddressRequest: - required: - - address - type: object - properties: - address: - type: string - description: E-mail Address - name: - type: string - description: Identity name - targets: - type: array - items: - type: string - description: 'An array of forwarding targets. The value could either be an email address or a relay url to next MX server ("smtp://mx2.zone.eu:25") or an URL where mail contents are POSTed to' - forwards: - type: number - description: Daily allowed forwarding count for this address - allowWildcard: - type: boolean - description: 'If true then address value can be in the form of `*@example.com`, otherwise using * is not allowed' - tags: - type: array - items: - type: string - description: A list of tags associated with this address - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - internalData: - description: 'Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens' - oneOf: - - type: object - - type: string - autoreply: - $ref: '#/components/schemas/Autoreply' - RenameDomainRequest: - required: - - oldDomain - - newDomain - type: object - properties: - oldDomain: - type: string - description: Old Domain Name - newDomain: - type: string - description: New Domain Name - CreateASPRequest: - required: - - description - - scopes - type: object - properties: - description: - type: string - description: Description - scopes: - type: array - items: - $ref: '#/components/schemas/AspScopes' - description: List of scopes this Password applies to. Special scope "*" indicates that this password can be used for any scope except "master" - example: ['imap', 'smtp'] - generateMobileconfig: - type: boolean - description: If true then result contains a mobileconfig formatted file with account config - example: true - address: - type: string - description: E-mail address to be used as the account address in mobileconfig file. Must be one of the listed identity addresses of the user. Defaults to the main address of the user - example: 'user@example.com' - password: - type: string - description: Optional pregenerated password. Must be 16 characters, latin letters only. - example: 'aaaaaaaaaaaaaaaa' - ttl: - type: number - description: 'TTL in seconds for this password. Every time password is used, TTL is reset to this value' - example: 3600000 - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - example: '127.0.0.1' - RestoreMessageRequest: - type: object - properties: - mailbox: - type: string - description: ID of the target Mailbox. If not set then original mailbox is used. - RestoreMessagesRequest: - required: - - start - - end - type: object - properties: - start: - type: string - description: Datestring - format: date-time - end: - type: string - description: Datestring - format: date-time - CreateAuditRequest: - required: - - user - - expires - type: object - properties: - user: - type: string - description: Users unique ID. - start: - type: string - description: Start time as ISO date - format: date-time - end: - type: string - description: End time as ISO date - format: date-time - expires: - type: string - description: Expiration date. Audit data is deleted after this date - format: date-time - AuthenticateRequest: - required: - - username - - password - type: object - properties: - username: - type: string - description: Username or E-mail address - password: - type: string - description: Password - protocol: - type: string - description: Application identifier for security logs - scope: - type: string - description: 'Required scope. One of master, imap, smtp, pop3' - token: - type: boolean - description: If true then generates a temporary access token that is valid for this user. Only available if scope is "master". When using user tokens then you can replace user ID in URLs with "me". - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - title: '' - UpdateAutoreplyRequest: - type: object - properties: - status: - type: boolean - description: Is the autoreply enabled (true) or not (false) - name: - type: string - description: 'Name that is used for the From: header in autoreply message' - subject: - type: string - description: Subject line for the autoreply. If empty then uses subject of the original message - html: - type: string - description: HTML formatted content of the autoreply message - text: - type: string - description: Plaintext formatted content of the autoreply message - start: - type: string - description: Datestring of the start of the autoreply or boolean false to disable start checks - format: date-time - end: - type: string - description: Datestring of the end of the autoreply or boolean false to disable end checks - format: date-time - - UpdateDkimKeyRequest: - required: - - domain - - selector - type: object - properties: - domain: - type: string - description: Domain name this DKIM key applies to. Use "*" as a special value that will be used for domains that do not have their own DKIM key set - selector: - type: string - description: Selector for the key - description: - type: string - description: Key description - privateKey: - type: string - description: 'Pem formatted DKIM private key. If not set then a new 2048 bit RSA key is generated, beware though that it can take several seconds to complete.' - - UpdateTLSCertRequest: - required: - - servername - type: object - properties: - servername: - type: string - description: Server name this TLS certificate applies to - example: imap.example.com - acme: - type: boolean - description: If true then private key and certificate are managed automatically by ACME - example: false - privateKey: - type: string - description: PEM formatted TLS private key. Optional if certificate is managed by ACME - example: "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADA..." - cert: - type: string - description: 'PEM formatted TLS certificate or a certificate bundle with concatenated certificate and CA chain. Optional if certificate is managed by ACME' - example: "-----BEGIN CERTIFICATE-----\nMIIDEDCCAfg..." - ca: - type: array - description: 'CA chain certificates. Not needed if `cert` value is a bundle' - items: - type: string - description: 'PEM formatted TLS certificate' - example: "-----BEGIN CERTIFICATE-----\nMIIDEDCCAfgs..." - description: - type: string - description: Certificate description - example: 'Some notes about this certificate' - - CreateAllowedDomainRequest: - required: - - domain - type: object - properties: - domain: - type: string - description: Domain name to allowlist for users/addresses that include this tag - CreateBlockedDomainRequest: - required: - - domain - type: object - properties: - domain: - type: string - description: Domain name to blocklist for users/addresses that include this tag - CreateDomainAliasRequest: - required: - - alias - - domain - type: object - properties: - alias: - type: string - description: Domain Alias - domain: - type: string - description: Domain name this Alias applies to - UpdateFilterRequest: - type: object - properties: - name: - type: string - description: Name of the Filter - query: - $ref: '#/components/schemas/Query' - action: - $ref: '#/components/schemas/Action' - disabled: - type: boolean - description: If true then this filter is ignored - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - CreateFilterRequest: - required: - - query - - action - type: object - properties: - name: - type: string - description: Name of the Filter - query: - $ref: '#/components/schemas/Query' - action: - $ref: '#/components/schemas/Action' - disabled: - type: boolean - description: If true then this filter is ignored - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - UpdateMailboxRequest: - type: object - properties: - path: - type: string - description: 'Full path of the mailbox, use this to rename an existing Mailbox' - hidden: - type: boolean - description: Is the folder hidden or not. Hidden folders can not be opened in IMAP. - retention: - type: number - description: Retention policy for the Mailbox (in ms). Changing retention value only affects messages added to this folder after the change - subscribed: - type: boolean - description: Change Mailbox subscription state - CreateMailboxRequest: - required: - - path - type: object - properties: - path: - type: string - description: 'Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)' - hidden: - type: boolean - description: Is the folder hidden or not. Hidden folders can not be opened in IMAP. - retention: - type: number - description: Retention policy for the created Mailbox. Milliseconds after a message added to mailbox expires. Set to 0 to disable. - UpdateMessageRequest: - type: object - properties: - message: - type: string - description: 'Message ID values. Either comma separated numbers (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*)' - moveTo: - type: string - description: ID of the target Mailbox if you want to move messages - seen: - type: boolean - description: State of the \Seen flag - flagged: - type: boolean - description: State of the \Flagged flag - draft: - type: boolean - description: State of the \Draft flag - expires: - type: string - description: Either expiration date or false to turn of autoexpiration - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - SubmitStoredMessageRequest: - type: object - properties: - deleteFiles: - type: boolean - description: If true then deletes attachment files listed in metaData.files array - sendTime: - type: string - description: Datestring for delivery if message should be sent some later time - format: date-time - SubmitMessageRequest: - required: - - subject - - text - - html - type: object - properties: - reference: - $ref: '#/components/schemas/Reference' - mailbox: - type: string - description: Mailbox ID where to upload the message. If not set then message is uploaded to Sent Mail folder. - uploadOnly: - type: boolean - description: If true then generated message is not added to the sending queue - isDraft: - type: boolean - description: If true then treats this message as draft (should be used with uploadOnly=true) - sendTime: - type: string - description: Datestring for delivery if message should be sent some later time - format: date-time - envelope: - $ref: '#/components/schemas/EnvelopeUpload' - from: - $ref: '#/components/schemas/Address' - to: - type: array - items: - $ref: '#/components/schemas/AddressOptionalName' - description: 'Addresses for the To: header' - cc: - type: array - items: - $ref: '#/components/schemas/AddressOptionalName' - description: 'Addresses for the Cc: header' - bcc: - type: array - items: - $ref: '#/components/schemas/AddressOptionalName' - description: 'Addresses for the Bcc: header' - subject: - type: string - description: Message subject. If not then resolved from Reference message - text: - type: string - description: Plaintext message - html: - type: string - description: HTML formatted message - headers: - type: array - items: - $ref: '#/components/schemas/Header' - description: Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically - attachments: - type: array - items: - $ref: '#/components/schemas/AttachmentsUpload' - description: Attachments for the message - meta: - type: object - description: Custom metainfo for the message - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - CheckTotp2FARequest: - required: - - token - type: object - properties: - token: - type: string - description: 6-digit number - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - EnableCustom2FARequest: - type: object - properties: - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - EnableTotp2FARequest: - required: - - token - type: object - properties: - token: - type: string - description: 6-digit number that matches seed value from 2fa/totp/setup - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - SetupTotp2FARequest: - type: object - properties: - label: - type: string - description: Label text for QR code (defaults to username) - issuer: - type: string - description: Description text for QR code (defaults to "WildDuck") - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - UpdateUserRequest: - type: object - properties: - name: - type: string - description: Name of the User - existingPassword: - type: string - description: If provided then validates against account password before applying any changes - password: - type: string - description: New password for the account. Set to boolean false to disable password usage for the master scope, Application Specific Passwords would still be allowed - hashedPassword: - type: boolean - description: 'If true then password is already hashed, so store as is. Supported hashes: pbkdf2, bcrypt ($2a, $2y, $2b), md5 ($1), sha512 ($6), sha256 ($5), argon2 ($argon2d, $argon2i, $argon2id). Stored hashes are rehashed to pbkdf2 on first successful password check.' - allowUnsafe: - type: boolean - description: 'If false then validates provided passwords against Have I Been Pwned API. Experimental, so validation is disabled by default but will be enabled automatically in some future version of WildDuck.' - tags: - type: array - items: - type: string - description: A list of tags associated with this user - retention: - type: number - description: Default retention time (in ms). Set to 0 to disable - uploadSentMessages: - type: boolean - description: 'If true then all messages sent through MSA are also uploaded to the Sent Mail folder. Might cause duplicates with some email clients, so disabled by default.' - encryptMessages: - type: boolean - description: If true then received messages are encrypted - encryptForwarded: - type: boolean - description: If true then forwarded messages are encrypted - pubKey: - type: string - description: Public PGP key for the User that is used for encryption. Use empty string to remove the key - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - internalData: - type: object - description: 'Optional internal metadata, must be an object or JSON formatted string of an object. Not available for user-role tokens' - language: - type: string - description: Language code for the User - targets: - type: array - items: - type: string - description: 'An array of forwarding targets. The value could either be an email address or a relay url to next MX server ("smtp://mx2.zone.eu:25") or an URL where mail contents are POSTed to' - spamLevel: - type: number - description: 'Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam' - quota: - type: number - description: Allowed quota of the user in bytes - recipients: - type: number - description: How many messages per 24 hour can be sent - forwards: - type: number - description: How many messages per 24 hour can be forwarded - filters: - type: number - description: How many filters are allowed for this account - imapMaxUpload: - type: number - description: How many bytes can be uploaded via IMAP during 24 hour - imapMaxDownload: - type: number - description: How many bytes can be downloaded via IMAP during 24 hour - pop3MaxDownload: - type: number - description: How many bytes can be downloaded via POP3 during 24 hour - pop3MaxMessages: - type: number - description: How many latest messages to list in POP3 session - imapMaxConnections: - type: number - description: How many parallel IMAP connections are alowed - receivedMax: - type: number - description: How many messages can be received from MX during 60 seconds - disable2fa: - type: boolean - description: 'If true, then disables 2FA for this user' - disabledScopes: - type: array - items: - $ref: '#/components/schemas/DisabledScopes' - description: 'List of scopes that are disabled for this user ("imap", "pop3", "smtp")' - disabled: - type: boolean - description: 'If true then disables user account (can not login, can not receive messages)' - fromWhitelist: - type: array - items: - type: string - description: A list of additional email addresses this user can send mail from. Wildcard is allowed. - suspended: - type: boolean - description: If true then disables authentication - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - CreateUserRequest: - required: - - username - - password - type: object - properties: - username: - type: string - description: Username of the User. Dots are allowed but informational only ("user.name" is the same as "username"). - name: - type: string - description: Name of the User - password: - type: string - description: Password for the account. Set to boolean false to disable password usage for the master scope, Application Specific Passwords would still be allowed - hashedPassword: - type: boolean - description: 'If true then password is already hashed, so store as is. Supported hashes: pbkdf2, bcrypt ($2a, $2y, $2b), md5 ($1), sha512 ($6), sha256 ($5), argon2 ($argon2d, $argon2i, $argon2id). Stored hashes are rehashed to pbkdf2 on first successful password check.' - allowUnsafe: - type: boolean - description: 'If false then validates provided passwords against Have I Been Pwned API. Experimental, so validation is disabled by default but will be enabled automatically in some future version of WildDuck.' - address: - type: string - description: Default email address for the User (autogenerated if not set) - emptyAddress: - type: boolean - description: If true then do not autogenerate missing email address for the User. Only needed if you want to create a user account that does not have any email address associated - requirePasswordChange: - type: boolean - description: 'If true then requires the user to change password, useful if password for the account was autogenerated' - tags: - type: array - items: - type: string - description: A list of tags associated with this user - addTagsToAddress: - type: boolean - description: If true then autogenerated address gets the same tags as the user - retention: - type: number - description: Default retention time (in ms). Set to 0 to disable - uploadSentMessages: - type: boolean - description: 'If true then all messages sent through MSA are also uploaded to the Sent Mail folder. Might cause duplicates with some email clients, so disabled by default.' - encryptMessages: - type: boolean - description: If true then received messages are encrypted - encryptForwarded: - type: boolean - description: If true then forwarded messages are encrypted - pubKey: - type: string - description: Public PGP key for the User that is used for encryption. Use empty string to remove the key - metaData: - description: 'Optional metadata, must be an object or JSON formatted string' - oneOf: - - type: object - - type: string - internalData: - description: 'Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens' - oneOf: - - type: object - - type: string - language: - type: string - description: Language code for the User - targets: - type: array - items: - type: string - description: 'An array of forwarding targets. The value could either be an email address or a relay url to next MX server ("smtp://mx2.zone.eu:25") or an URL where mail contents are POSTed to' - spamLevel: - type: number - description: 'Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam' - quota: - type: number - description: Allowed quota of the user in bytes - recipients: - type: number - description: How many messages per 24 hour can be sent - forwards: - type: number - description: How many messages per 24 hour can be forwarded - filters: - type: number - description: How many filters are allowed for this account - imapMaxUpload: - type: number - description: How many bytes can be uploaded via IMAP during 24 hour - imapMaxDownload: - type: number - description: How many bytes can be downloaded via IMAP during 24 hour - pop3MaxDownload: - type: number - description: How many bytes can be downloaded via POP3 during 24 hour - pop3MaxMessages: - type: number - description: How many latest messages to list in POP3 session - imapMaxConnections: - type: number - description: How many parallel IMAP connections are alowed - receivedMax: - type: number - description: How many messages can be received from MX during 60 seconds - mailboxes: - $ref: '#/components/schemas/Mailboxes' - disabledScopes: - type: array - items: - $ref: '#/components/schemas/DisabledScopes' - description: 'List of scopes that are disabled for this user ("imap", "pop3", "smtp")' - fromWhitelist: - type: array - items: - type: string - description: A list of additional email addresses this user can send mail from. Wildcard is allowed. - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - - LogoutUserRequest: - type: object - properties: - reason: - type: string - description: Message to be shown to connected IMAP client - - UserRestoreRequest: - type: object - properties: - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - - ResetUserPasswordRequest: - type: object - properties: - validAfter: - type: string - format: date-time - description: Allow using the generated password not earlier than provided time - sess: - type: string - description: Session identifier for the logs - ip: - type: string - description: IP address for the logs - CreateWebhookRequest: - required: - - type - - url - type: object - properties: - type: - type: array - items: - type: string - description: An array of event types to match. For prefix match use ".*" at the end (eg. "user.*") or "*" for all types - user: - type: string - description: User ID to match (only makes sense for user specific resources) - url: - type: string - description: URL to POST data to - - CreateSettingRequest: - required: - - value - type: object - properties: - value: - oneOf: - - type: string - - type: number - description: Setting value - sess: - description: Session identifier for the logs - type: string - ip: - description: IP address for the logs - type: string - - GetAddressesResult: - required: - - id - - name - - address - - user - - forwarded - - forwardedDisabled - type: object - properties: - id: - type: string - description: ID of the Address - name: - type: string - description: Identity name - address: - type: string - description: E-mail address string - user: - type: string - description: User ID this address belongs to if this is a User address - forwarded: - type: boolean - description: If true then it is a forwarded address - forwardedDisabled: - type: boolean - description: If true then the forwarded address is disabled - target: - type: array - items: - type: string - description: List of forwarding targets - GetUserAddressesResult: - required: - - id - - name - - address - - main - - created - - tags - type: object - properties: - id: - type: string - description: ID of the Address - name: - type: string - description: Identity name - address: - type: string - description: E-mail address string - main: - type: boolean - description: Indicates if this is the default address for the User - created: - type: string - description: Datestring of the time the address was created - format: date-time - tags: - type: array - items: - type: string - description: List of tags associated with the Address - metaData: - type: object - description: Metadata object (if available) - internalData: - type: object - description: 'Internal metadata object (if available), not included for user-role requests' - GetUserAddressesregisterResult: - required: - - id - - address - type: object - properties: - id: - type: string - description: ID of the Address - example: 507f1f77bcf86cd799439011 - name: - type: string - description: Name from address header - example: John Doe - address: - type: string - description: E-mail address string - example: john@example.com - GetASPsResult: - required: - - id - - description - - scopes - - lastUse - - created - type: object - properties: - id: - type: string - description: ID of the Application Password - description: - type: string - description: Description - scopes: - type: array - items: - $ref: '#/components/schemas/AspScopes' - description: Allowed scopes for the Application Password - lastUse: - $ref: '#/components/schemas/LastUse' - created: - type: string - description: Datestring - format: date-time - GetArchivedMessagesResult: - required: - - id - - mailbox - - thread - - from - - to - - cc - - bcc - - subject - - date - - intro - - attachments - - seen - - deleted - - flagged - - contentType - type: object - properties: - id: - type: string - description: ID of the Message (24 byte hex) - mailbox: - type: string - description: ID of the Mailbox - thread: - type: string - description: ID of the Thread - from: - $ref: '#/components/schemas/Address' - to: - type: array - items: - $ref: '#/components/schemas/Address' - description: 'Recipients in To: field' - cc: - type: array - items: - $ref: '#/components/schemas/Address' - description: 'Recipients in Cc: field' - bcc: - type: array - items: - $ref: '#/components/schemas/Address' - description: 'Recipients in Bcc: field. Usually only available for drafts' - subject: - type: string - description: Message subject - date: - type: string - description: Date string from header - format: date-time - idate: - type: string - description: Date string of receive time - format: date-time - intro: - type: string - description: First 128 bytes of the message - attachments: - type: boolean - description: Does the message have attachments - seen: - type: boolean - description: Is this message alread seen or not - deleted: - type: boolean - description: Does this message have a \Deleted flag (should not have as messages are automatically deleted once this flag is set) - flagged: - type: boolean - description: Does this message have a \Flagged flag - contentType: - $ref: '#/components/schemas/ContentType' - GetAuthlogResult: - required: - - id - - action - - result - - created - type: object - properties: - id: - type: string - description: ID of the Event - action: - type: string - description: Action identifier - result: - type: string - description: Did the action succeed - sess: - type: string - description: Session identifier - ip: - type: string - description: IP address of the Event - created: - type: string - description: Datestring of the Event time - format: date-time - - GetDkimKeysResult: - required: - - id - - domain - - selector - - description - - fingerprint - - created - type: object - properties: - id: - type: string - description: ID of the DKIM - domain: - type: string - description: The domain this DKIM key applies to - selector: - type: string - description: DKIM selector - description: - type: string - description: Key description - fingerprint: - type: string - description: Key fingerprint (SHA1) - created: - type: string - description: Datestring - format: date-time - - GetTLSCertResult: - required: - - id - - servername - - description - - fingerprint - - created - type: object - properties: - id: - type: string - description: ID of the certificate - example: '609d201236d1d936948f23b1' - servername: - type: string - description: The server name this certificate applies to - example: 'imap.example.com' - acme: - type: boolean - description: If true then private key and certificate are managed automatically by ACME - example: false - description: - type: string - description: Key description - example: 'Some notes about this certificate' - fingerprint: - type: string - description: Key fingerprint (SHA1) - example: '59:8b:ed:11:5b:4f:ce:b4:e5:1a:2f:35:b1:6f:7d:93:40:c8:2f:9c:38:3b:cd:f4:04:92:a1:0e:17:2c:3f:f3' - created: - type: string - description: Datestring - format: date-time - example: '2021-05-13T20:06:46.179Z' - expires: - type: string - description: Certificate expiration time - example: '2021-06-26T21:55:55.000Z' - format: date-time - altNames: - type: array - description: SAN servernames listed in the certificate - items: - type: string - example: ['example.com', 'www.example.com'] - - GetAllowedDomainResult: - required: - - id - - domain - type: object - properties: - id: - type: string - description: Entry ID - domain: - type: string - description: allowlisted domain name - GetBlockedDomainResult: - required: - - id - - domain - type: object - properties: - id: - type: string - description: Entry ID - domain: - type: string - description: blocklisted domain name - GetDomainAliasesResult: - required: - - id - - alias - - domain - type: object - properties: - id: - type: string - description: ID of the Domain Alias - alias: - type: string - description: Domain Alias - domain: - type: string - description: The domain this alias applies to - GetAllFiltersResult: - required: - - id - - user - - name - - created - - query - - action - - disabled - type: object - properties: - id: - type: string - description: Filter ID - user: - type: string - description: User ID - name: - type: string - description: Name for the filter - created: - type: string - description: Datestring of the time the filter was created - format: date-time - query: - type: array - items: - type: array - items: - type: string - action: - type: array - items: - type: array - items: - type: string - disabled: - type: boolean - description: 'If true, then this filter is ignored' - metaData: - type: object - description: Custom metadata value. Included if metaData query argument was true - targets: - type: array - items: - type: string - description: List of forwarding targets - - GetFiltersResult: - required: - - id - - name - - created - - query - - action - - disabled - type: object - properties: - id: - type: string - description: Filter ID - name: - type: string - description: Name for the filter - created: - type: string - description: Datestring of the time the filter was created - format: date-time - query: - type: array - items: - type: array - items: - type: string - action: - type: array - items: - type: array - items: - type: string - metaData: - type: object - description: Custom metadata value. Included if metaData query argument was true - disabled: - type: boolean - description: 'If true, then this filter is ignored' - GetMailboxesResult: - required: - - id - - name - - path - - specialUse - - modifyIndex - - subscribed - - hidden - - total - - unseen - type: object - properties: - id: - type: string - description: Mailbox ID - name: - type: string - description: Name for the mailbox (unicode string) - path: - type: string - description: 'Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)' - specialUse: - type: string - description: 'Either special use identifier or null. One of \Drafts, \Junk, \Sent or \Trash' - modifyIndex: - type: number - description: Modification sequence number. Incremented on every change in the mailbox. - subscribed: - type: boolean - description: Mailbox subscription status. IMAP clients may unsubscribe from a folder. - retention: - type: number - description: Default retention policy for this mailbox (in ms). If set then messages added to this maibox will be automatically deleted after retention time. - hidden: - type: boolean - description: Is the folder hidden or not - total: - type: number - description: How many messages are stored in this mailbox - unseen: - type: number - description: How many unseen messages are stored in this mailbox - GetMessagesResult: - required: - - id - - mailbox - - thread - - from - - to - - cc - - bcc - - subject - - date - - size - - intro - - attachments - - seen - - deleted - - flagged - - answered - - forwarded - - contentType - type: object - properties: - id: - type: number - description: ID of the Message - mailbox: - type: string - description: ID of the Mailbox - thread: - type: string - description: ID of the Thread - threadMessageCount: - type: number - description: Amount of messages in the Thread. Included if threadCounters query argument was true - from: - $ref: '#/components/schemas/Address' - to: - type: array - items: - $ref: '#/components/schemas/Address' - description: 'Recipients in To: field' - cc: - type: array - items: - $ref: '#/components/schemas/Address' - description: 'Recipients in Cc: field' - bcc: - type: array - items: - $ref: '#/components/schemas/Address' - description: 'Recipients in Bcc: field. Usually only available for drafts' - subject: - type: string - description: Message subject - date: - type: string - description: Date string from header - format: date-time - idate: - type: string - description: Date string of receive time - format: date-time - size: - type: number - description: Message size in bytes - intro: - type: string - description: First 128 bytes of the message - attachments: - type: boolean - description: Does the message have attachments - seen: - type: boolean - description: Is this message alread seen or not - deleted: - type: boolean - description: Does this message have a \Deleted flag (should not have as messages are automatically deleted once this flag is set) - flagged: - type: boolean - description: Does this message have a \Flagged flag - answered: - type: boolean - description: Does this message have a \Answered flag - forwarded: - type: boolean - description: Does this message have a $Forwarded flag - contentType: - $ref: '#/components/schemas/ContentType' - metaData: - type: object - description: Custom metadata value. Included if metaData query argument was true - headers: - type: object - description: Header object keys requested with the includeHeaders argument - GetFilesResult: - required: - - id - - filename - - contentType - - size - type: object - properties: - id: - type: string - description: ID of the File - filename: - type: string - description: Filename - contentType: - type: string - description: Content-Type of the file - size: - type: number - description: File size - GetUsersResult: - required: - - id - - username - - name - - address - - tags - - targets - - enabled2fa - - autoreply - - encryptMessages - - encryptForwarded - - quota - - hasPasswordSet - - activated - - disabled - - suspended - type: object - properties: - id: - type: string - description: Users unique ID (24 byte hex) - username: - type: string - description: Username of the User - name: - type: string - description: Name of the User - address: - type: string - description: Main email address of the User - tags: - type: array - items: - type: string - description: List of tags associated with the User' - targets: - type: array - items: - type: string - description: List of forwarding targets - enabled2fa: - type: array - items: - type: string - description: List of enabled 2FA methods - autoreply: - type: boolean - description: Is autoreply enabled or not (start time may still be in the future or end time in the past) - encryptMessages: - type: boolean - description: If true then received messages are encrypted - encryptForwarded: - type: boolean - description: If true then forwarded messages are encrypted - quota: - $ref: '#/components/schemas/Quota' - metaData: - type: object - description: Custom metadata value. Included if metaData query argument was true - internalData: - type: object - description: Custom metadata value for internal use. Included if internalData query argument was true and request was not made using user-role token - hasPasswordSet: - type: boolean - description: If true then the User has a password set and can authenticate - activated: - type: boolean - description: Is the account activated - disabled: - type: boolean - description: If true then the user can not authenticate or receive any new mail - suspended: - type: boolean - description: If true then the user can not authenticate - - GetWebhooksResult: - required: - - id - - type - - user - - url - type: object - properties: - id: - type: string - description: Webhooks unique ID (24 byte hex) - type: - type: array - items: - type: string - description: An array of event types this webhook matches - user: - type: string - description: User ID or null - url: - type: string - description: Webhook URL - AspScopes: - type: string - enum: - - imap - - pop3 - - smtp - - '*' - DisabledScopes: - type: string - enum: - - imap - - pop3 - - smtp - Order: - type: string - enum: - - asc - - desc - - GetSettingsResult: - required: - - key - type: object - properties: - key: - type: string - description: Setting key - value: - oneOf: - - type: string - - type: number - description: Setting value - name: - type: string - description: Setting name - description: - type: string - description: Setting description - default: - oneOf: - - type: string - - type: number - description: Default value for this key - type: - type: string - description: Value subtype - custom: - type: boolean - description: If true then the value is set - - securitySchemes: - AccessTokenAuth: - name: X-Access-Token - type: apiKey - in: header - description: |- - If authentication is enabled in the WildDuck configuration, you will need to supply an access token in the `X-Access-Token` header. - - ```json - { - "X-Access-Token": "59fc66a03e54454869460e45" - } - ``` -security: - - AccessTokenAuth: [] diff --git a/docs/api/openapidocs.json b/docs/api/openapidocs.json new file mode 100644 index 00000000..df8daa35 --- /dev/null +++ b/docs/api/openapidocs.json @@ -0,0 +1 @@ +{"openapi":"3.0.0","info":{"title":"WildDuck API","description":"WildDuck API docs","version":"1.0.0","contact":{"url":"https://github.com/nodemailer/wildduck"}},"servers":[{"url":"https://api.wildduck.email"}],"tags":[{"name":"Addresses"},{"name":"ApplicationPasswords"},{"name":"Archive","description":"Archive includes all deleted messages. Once messages are old enough then these are permanenetly deleted from the archive as well. Until then you can restore the deleted messages."},{"name":"Audit","description":"Auditing allows to monitor an email account. All existing, deleted and new emails are copied to the auditing system. See also https://github.com/nodemailer/wildduck-audit-manager"},{"name":"Authentication"},{"name":"Autoreplies"},{"name":"Certs","description":"WildDuck allows to register TLS certificates to be used with SNI connections. These certificates are used by IMAP, POP3, API and SMTP servers when a SNI capable client establishes a TLS connection. This does not apply for MX servers."},{"name":"DKIM","description":"Whenever an email is sent WildDuck checks if there is a DKIM key registered for the domain name of the sender address and uses it to sign the message."},{"name":"DomainAccess","description":"Add sender domain names to allowlist (messages are all accepted) or blocklist (messages are sent to Spam folder)"},{"name":"DomainAliases"},{"name":"Filters"},{"name":"Mailboxes"},{"name":"Messages"},{"name":"Settings"},{"name":"Storage","description":"Storage allows easier attachment handling when composing Draft messages. Instead of uploading the attachmnent with every draft update, you store the attachment to the Storage and then link stored file for the Draft."},{"name":"Submission"},{"name":"TwoFactorAuth"},{"name":"Users"},{"name":"Webhooks"}],"paths":{"/users":{"get":{"tags":["Users"],"summary":"List registered Users","operationId":"users","parameters":[{"name":"query","in":"query","description":"Partial match of username or default email address","required":false,"schema":{"type":"string"}},{"name":"forward","in":"query","description":"Partial match of a forward email address or URL","required":false,"schema":{"type":"string"}},{"name":"tags","in":"query","description":"Comma separated list of tags. The User must have at least one to be set","required":false,"schema":{"type":"string"}},{"name":"requiredTags","in":"query","description":"Comma separated list of tags. The User must have all listed tags to be set","required":false,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"internalData","in":"query","description":"If true, then includes internalData in the response. Not shown for user-role tokens.","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"total":{"type":"number","description":"How many results were found","required":true,"example":541},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true,"example":1},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"query":{"type":"string","description":"Partial match of username or default email address","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetUsersResult"},"description":"User listing"}},"required":["success","total","page","previousCursor","nextCursor","query","results"]}}}}}},"post":{"tags":["Users"],"summary":"Create new user","operationId":"postusers","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"Username of the User. Dots are allowed but informational only (\"user.name\" is the same as \"username\").","required":true},"password":{"type":"string","description":"Password for the account. Set to boolean false to disable password usage for the master scope, Application Specific Passwords would still be allowed","required":true,"enum":[false,""]},"hashedPassword":{"type":"boolean","description":"If true then password is already hashed, so store as is. Supported hashes: pbkdf2, bcrypt ($2a, $2y, $2b), md5 ($1), sha512 ($6), sha256 ($5), argon2 ($argon2d, $argon2i, $argon2id). Stored hashes are rehashed to pbkdf2 on first successful password check.","required":false},"allowUnsafe":{"type":"boolean","description":"If false then validates provided passwords against Have I Been Pwned API. Experimental, so validation is disabled by default but will be enabled automatically in some future version of WildDuck.","required":false},"address":{"type":"string","description":"Default email address for the User (autogenerated if not set)","required":false},"emptyAddress":{"type":"boolean","description":"If true then do not autogenerate missing email address for the User. Only needed if you want to create a user account that does not have any email address associated","required":false},"language":{"type":"string","description":"Language code for the User","required":false},"retention":{"type":"number","description":"Default retention time (in ms). Set to 0 to disable","required":false},"name":{"type":"string","description":"Name of the User","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"},"spamLevel":{"type":"number","description":"Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam","required":false},"quota":{"type":"number","description":"Allowed quota of the user in bytes","required":false},"recipients":{"type":"number","description":"How many messages per 24 hour can be sent","required":false},"forwards":{"type":"number","description":"How many messages per 24 hour can be forwarded","required":false},"filters":{"type":"number","description":"How many filters are allowed for this account","required":false},"requirePasswordChange":{"type":"boolean","description":"If true then requires the user to change password, useful if password for the account was autogenerated","required":false},"imapMaxUpload":{"type":"number","description":"How many bytes can be uploaded via IMAP during 24 hour","required":false},"imapMaxDownload":{"type":"number","description":"How many bytes can be downloaded via IMAP during 24 hour","required":false},"pop3MaxDownload":{"type":"number","description":"How many bytes can be downloaded via POP3 during 24 hour","required":false},"pop3MaxMessages":{"type":"number","description":"How many latest messages to list in POP3 session","required":false},"imapMaxConnections":{"type":"number","description":"How many parallel IMAP connections are alowed","required":false},"receivedMax":{"type":"number","description":"How many messages can be received from MX during 60 seconds","required":false},"fromWhitelist":{"type":"array","items":{"type":"string","required":false},"description":"A list of additional email addresses this user can send mail from. Wildcard is allowed."},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this user"},"addTagsToAddress":{"type":"boolean","description":"If true then autogenerated address gets the same tags as the user","required":false},"uploadSentMessages":{"type":"boolean","description":"If true then all messages sent through MSA are also uploaded to the Sent Mail folder. Might cause duplicates with some email clients, so disabled by default.","required":false},"mailboxes":{"$ref":"#/components/schemas/Mailboxes"},"disabledScopes":{"type":"array","items":{"type":"string","required":false,"enum":["imap","pop3","smtp"]},"description":"List of scopes that are disabled for this user (\"imap\", \"pop3\", \"smtp\")"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"pubKey":{"type":"string","description":"Public PGP key for the User that is used for encryption. Use empty string to remove the key","required":false},"encryptMessages":{"type":"boolean","description":"If true then received messages are encrypted","required":false},"encryptForwarded":{"type":"boolean","description":"If true then forwarded messages are encrypted","required":false},"featureFlags":{"type":"object","description":"Feature flags to specify","properties":{"indexing":{"type":"boolean","required":false}},"required":[]},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["username","password"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true}},"required":["success","id"]}}}}}}},"/users/resolve/:username":{"get":{"tags":["Users"],"summary":"Resolve ID for a username","operationId":"getusersresolveusername","parameters":[{"name":"username","in":"path","description":"Username of the User. Alphanumeric value. Must start with a letter, dots are allowed but informational only (\"user.name\" is the same as \"username\")","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Unique ID (24 byte hex)","required":true,"example":"609d201236d1d936948f23b1"}},"required":["success","id"]}}}}}}},"/users/:user":{"get":{"tags":["Users"],"summary":"Request User information","operationId":"getusersuser","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{}},"put":{"tags":["Users"],"summary":"Update User information","operationId":"putusersuser","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"existingPassword":{"type":"string","description":"If provided then validates against account password before applying any changes","required":false},"password":{"type":"string","description":"New password for the account. Set to boolean false to disable password usage for the master scope, Application Specific Passwords would still be allowed","required":false,"enum":[false,""]},"hashedPassword":{"type":"boolean","description":"If true then password is already hashed, so store as is. Supported hashes: pbkdf2, bcrypt ($2a, $2y, $2b), md5 ($1), sha512 ($6), sha256 ($5), argon2 ($argon2d, $argon2i, $argon2id). Stored hashes are rehashed to pbkdf2 on first successful password check.","required":false},"allowUnsafe":{"type":"boolean","description":"If false then validates provided passwords against Have I Been Pwned API. Experimental, so validation is disabled by default but will be enabled automatically in some future version of WildDuck.","required":false},"language":{"type":"string","description":"Language code for the User","required":false},"name":{"type":"string","description":"Name of the User","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"},"spamLevel":{"type":"number","description":"Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam","required":false},"uploadSentMessages":{"type":"boolean","description":"If true then all messages sent through MSA are also uploaded to the Sent Mail folder. Might cause duplicates with some email clients, so disabled by default.","required":false},"fromWhitelist":{"type":"array","items":{"type":"string","required":false},"description":"A list of additional email addresses this user can send mail from. Wildcard is allowed."},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional internal metadata, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"pubKey":{"type":"string","description":"Public PGP key for the User that is used for encryption. Use empty string to remove the key","required":false},"encryptMessages":{"type":"boolean","description":"If true then received messages are encrypted","required":false},"encryptForwarded":{"type":"boolean","description":"If true then forwarded messages are encrypted","required":false},"retention":{"type":"number","description":"Default retention time (in ms). Set to 0 to disable","required":false},"quota":{"type":"number","description":"Allowed quota of the user in bytes","required":false},"recipients":{"type":"number","description":"How many messages per 24 hour can be sent","required":false},"forwards":{"type":"number","description":"How many messages per 24 hour can be forwarded","required":false},"filters":{"type":"number","description":"How many filters are allowed for this account","required":false},"imapMaxUpload":{"type":"number","description":"How many bytes can be uploaded via IMAP during 24 hour","required":false},"imapMaxDownload":{"type":"number","description":"How many bytes can be downloaded via IMAP during 24 hour","required":false},"pop3MaxDownload":{"type":"number","description":"How many bytes can be downloaded via POP3 during 24 hour","required":false},"pop3MaxMessages":{"type":"number","description":"How many latest messages to list in POP3 session","required":false},"imapMaxConnections":{"type":"number","description":"How many parallel IMAP connections are alowed","required":false},"receivedMax":{"type":"number","description":"How many messages can be received from MX during 60 seconds","required":false},"disable2fa":{"type":"boolean","description":"If true, then disables 2FA for this user","required":false},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this user"},"disabledScopes":{"type":"array","items":{"type":"string","required":false,"enum":["imap","pop3","smtp"]},"description":"List of scopes that are disabled for this user (\"imap\", \"pop3\", \"smtp\")"},"disabled":{"type":"boolean","description":"If true then disables user account (can not login, can not receive messages)","required":false},"featureFlags":{"type":"object","description":"Enabled feature flags","properties":{"indexing":{"type":"boolean","required":false}},"required":[]},"suspended":{"type":"boolean","description":"If true then disables authentication","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}},"delete":{"tags":["Users"],"summary":"Delete a User","description":"This method deletes user and address entries from DB and schedules a background task to delete messages. You can call this method several times even if the user has already been deleted, in case there are still some pending messages.","operationId":"deleteusersuser","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"deleteAfter","in":"query","description":"Delete user entry from registry but keep all user data until provided date. User account is fully recoverable up to that date.","required":false,"schema":{"type":"date","enum":[false]}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"code":{"type":"string","description":"Task code. Should be TaskScheduled","required":false,"example":"TaskScheduled"},"user":{"type":"string","description":"User ID","required":false},"addresses":{"type":"object","properties":{"deleted":{"type":"number","description":"Number of deleted addresses","required":false}},"required":[]},"deleteAfter":{"type":"string","description":"Delete after date","required":false,"format":"date-time"},"task":{"type":"string","description":"Task ID","required":false}},"required":["success"]}}}}}}},"/users/:user/logout":{"put":{"tags":["Users"],"summary":"Log out User","operationId":"putusersuserlogout","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"reason":{"type":"string","description":"Message to be shown to connected IMAP client","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/quota/reset":{"post":{"tags":["Users"],"summary":"Recalculate User quota","description":"This method recalculates quota usage for a User. Normally not needed, only use it if quota numbers are way off. This method is not transactional, so if the user is currently receiving new messages then the resulting value is not exact.","operationId":"postusersuserquotareset","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"storageUsed":{"type":"number","description":"Calculated quota usage for the user","required":true},"previousStorageUsed":{"type":"number","description":"Previous storage used","required":true}},"required":["success","storageUsed","previousStorageUsed"]}}}}}}},"/quota/reset":{"post":{"tags":["Users"],"summary":"Recalculate Quota for all Users","description":"This method recalculates quota usage for all Users. Normally not needed, only use it if quota numbers are way off. This method is not transactional, so if the user is currently receiving new messages then the resulting value is not exact.","operationId":"postquotareset","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"task":{"type":"string","description":"Task ID","required":true}},"required":["success","task"]}}}}}}},"/data/export":{"post":{"tags":["Export"],"summary":"Export data","description":"Export data for matching users. Export dump does not include emails, only account structure (user data, password hashes, mailboxes, filters, etc.). A special \"export\"-role access token is required for exporting and importing.","operationId":"postdataexport","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"users":{"type":"array","items":{"type":"string","required":true},"description":"An array of User ID values to export"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"An array of user tags to export. If set then at least one tag must exist on an user."},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/octet-stream":{"schema":{"type":"string","required":false,"format":"binary"}}}}}}},"/data/import":{"post":{"tags":["Export"],"summary":"Import user data","description":"Import data from an export dump. If a database entry already exists, it is not modified. A special \"export\"-role access token is required for exporting and importing.","operationId":"postdataimport","parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"entries":{"type":"number","description":"How many database entries were found from the export file","required":false},"imported":{"type":"number","description":"How many database entries were imported from the export file","required":false},"failed":{"type":"number","description":"How many database entries were not imported due to some error","required":false},"existing":{"type":"number","description":"How many database existing entries were not imported","required":false}},"required":[]}}}}}}},"/users/:user/password/reset":{"post":{"tags":["Users"],"summary":"Reset password for a User","description":"This method generates a new temporary password for a User. Additionally it removes all two-factor authentication settings","operationId":"postusersuserpasswordreset","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"validAfter":{"type":"string","description":"Allow using the generated password not earlier than provided time","required":false,"format":"date-time","enum":[false]},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"password":{"type":"string","description":"Temporary password","required":true},"validAfter":{"type":"string","description":"The date password is valid after","required":false,"format":"date-time"}},"required":["success","password"]}}}}}}},"/users/:user/restore":{"get":{"tags":["Users"],"summary":"Return recovery info for a deleted user","operationId":"getusersuserrestore","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"user":{"type":"string","description":"ID of the deleted User","required":true},"username":{"type":"string","description":"Username of the User","required":true},"storageUsed":{"type":"number","description":"Calculated quota usage for the user","required":true},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the User"},"deleted":{"type":"string","description":"Datestring of the time the user was deleted","required":true,"format":"date-time"},"recoverableAddresses":{"type":"array","items":{"type":"string","required":false},"description":"List of email addresses that can be restored"}},"required":["success","user","username","storageUsed","tags","deleted","recoverableAddresses"]}}}}}},"post":{"tags":["Users"],"summary":"Cancel user deletion task","description":"Use this endpoint to cancel a timed deletion task scheduled by DELETE /user/{id}. If user data is not yet deleted then the account is fully recovered, except any email addresses that might have been already recycled","operationId":"postusersuserrestore","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"code":{"type":"string","description":"Task status code","required":true},"user":{"type":"string","description":"User ID","required":false},"task":{"type":"string","description":"Existing task id","required":false},"addresses":{"type":"object","properties":{"recovered":{"type":"number","description":"Number of recovered addresses","required":false},"main":{"type":"string","description":"Main address","required":false}},"required":[]}},"required":["success","code"]}}}}}}},"/addresses":{"get":{"tags":["Addresses"],"summary":"List registered Addresses","operationId":"addresses","parameters":[{"name":"query","in":"query","description":"Partial match of an address","required":false,"schema":{"type":"string"}},{"name":"forward","in":"query","description":"Partial match of a forward email address or URL","required":false,"schema":{"type":"string"}},{"name":"tags","in":"query","description":"Comma separated list of tags. The Address must have at least one to be set","required":false,"schema":{"type":"string"}},{"name":"requiredTags","in":"query","description":"Comma separated list of tags. The Address must have all listed tags to be set","required":false,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"internalData","in":"query","description":"If true, then includes internalData in the response. Not shown for user-role tokens.","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"query":{"type":"string","description":"Partial match of an address","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetAddressesResult"},"description":"Address listing"}},"required":["success","query","total","page","previousCursor","nextCursor","results"]}}}}}}},"/users/:user/addresses":{"post":{"tags":["Addresses"],"summary":"Create new Address","description":"Add a new email address for a User. Addresses can contain unicode characters. Dots in usernames are normalized so no need to create both \"firstlast@example.com\" and \"first.last@example.com\" Special addresses `*@example.com`, `*suffix@example.com` and `username@*` catches all emails to these domains or users without a registered destination (requires allowWildcard argument)","operationId":"postusersuseraddresses","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"address":{"oneOf":[{"type":"string","description":"E-mail Address","required":true},{"type":"string","required":false}],"description":"E-mail Address"},"name":{"type":"string","description":"Identity name","required":false},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":false},"allowWildcard":{"type":"boolean","description":"If true then address value can be in the form of `*@example.com`, `*suffix@example.com` and `username@*`, otherwise using * is not allowed. Static suffix can be up to 32 characters long.","required":false},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the address","required":true}},"required":["success","id"]}}}}}},"get":{"tags":["Addresses"],"summary":"List registered Addresses for a User","operationId":"getusersuseraddresses","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"internalData","in":"query","description":"If true, then includes internalData in the response. Not shown for user-role tokens.","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetUserAddressesResult"},"description":"Address listing"}},"required":["success","results"]}}}}}}},"/users/:user/addresses/:address":{"get":{"tags":["Addresses"],"summary":"Request Addresses information","operationId":"getusersuseraddressesaddress","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":true},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]}},"required":["success","id","name","address","main","created","tags"]}}}}}},"delete":{"tags":["Addresses"],"summary":"Delete an Address","operationId":"deleteusersuseraddressesaddress","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/addresses/:id":{"put":{"tags":["Addresses"],"summary":"Update Address information","operationId":"putusersuseraddressesid","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Identity name","required":false},"address":{"type":"string","description":"New address if you want to rename existing address. Only affects normal addresses, special addresses that include * can not be changed","required":false},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":true},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["main"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/addressregister":{"get":{"tags":["Addresses"],"summary":"List addresses from communication register","operationId":"getusersuseraddressregister","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"query","in":"query","description":"Prefix of an address or a name","required":true,"schema":{"type":"string","example":"`query=john`"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number","example":"`limit=25`"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetUserAddressesregisterResult"},"description":"Address listing"}},"required":["success","results"]}}}}}}},"/addresses/forwarded":{"post":{"tags":["Addresses"],"summary":"Create new forwarded Address","description":"Add a new forwarded email address. Addresses can contain unicode characters. Dots in usernames are normalized so no need to create both \"firstlast@example.com\" and \"first.last@example.com\" Special addresses `*@example.com` and `username@*` catches all emails to these domains or users without a registered destination (requires allowWildcard argument)","operationId":"postaddressesforwarded","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"address":{"oneOf":[{"type":"string","description":"E-mail Address","required":true},{"type":"string","required":false}],"description":"E-mail Address"},"name":{"type":"string","description":"Identity name","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"},"forwards":{"type":"number","description":"Daily allowed forwarding count for this address","required":false},"allowWildcard":{"type":"boolean","description":"If true then address value can be in the form of `*@example.com`, otherwise using * is not allowed","required":false},"autoreply":{"$ref":"#/components/schemas/Autoreply"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["address"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Address","required":true}},"required":["success","id"]}}}}}}},"/addresses/forwarded/:id":{"put":{"tags":["Addresses"],"summary":"Update forwarded Address information","operationId":"putaddressesforwardedid","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"address":{"type":"string","description":"New address. Only affects normal addresses, special addresses that include * can not be changed","required":false},"name":{"type":"string","description":"Identity name","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to. If set then overwrites previous targets array"},"forwards":{"type":"number","description":"Daily allowed forwarding count for this address","required":false},"autoreply":{"$ref":"#/components/schemas/Autoreply"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"forwardedDisabled":{"type":"boolean","description":"If true then disables forwarded address (stops forwarding messages)","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"id","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/addresses/forwarded/:address":{"delete":{"tags":["Addresses"],"summary":"Delete a forwarded Address","operationId":"deleteaddressesforwardedaddress","parameters":[{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}},"get":{"tags":["Addresses"],"summary":"Request forwarded Addresses information","operationId":"getaddressesforwardedaddress","parameters":[{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Address","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"},"limits":{"$ref":"#/components/schemas/AddressLimits"},"autoreply":{"$ref":"#/components/schemas/AutoreplyInfo"},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]},"forwardedDisabled":{"type":"boolean","description":"Specifies whether forwarding is disabled","required":false}},"required":["success","id","address","name","limits","autoreply","created","tags"]}}}}}}},"/addresses/resolve/:address":{"get":{"tags":["Addresses"],"summary":"Get Address info","operationId":"getaddressesresolveaddress","parameters":[{"name":"address","in":"path","description":"ID of the Address or e-mail address string","required":true,"schema":{"type":"alternatives"}},{"name":"allowWildcard","in":"query","description":"If true then resolves also wildcard addresses","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Address","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets if this is a Forwarded address"},"limits":{"$ref":"#/components/schemas/AddressLimits"},"autoreply":{"$ref":"#/components/schemas/AutoreplyInfo"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]}},"required":["success","id","address","name","limits","autoreply","tags","created"]}}}}}}},"/addresses/renameDomain":{"put":{"tags":["Addresses"],"summary":"Rename domain in addresses","description":"Renames domain names for addresses, DKIM keys and Domain Aliases","operationId":"putaddressesrenamedomain","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"oldDomain":{"type":"string","description":"Old Domain Name","required":true},"newDomain":{"type":"string","description":"New Domain Name","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["oldDomain","newDomain"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"modifiedAddresses":{"type":"number","description":"Number of modified addresses","required":true},"modifiedUsers":{"type":"number","description":"Number of modified users","required":true},"modifiedDkim":{"type":"number","description":"Number of modified DKIM keys","required":true},"modifiedAliases":{"type":"number","description":"Number of modified Domain Aliases","required":true}},"required":["success","modifiedAddresses","modifiedUsers","modifiedDkim","modifiedAliases"]}}}}}}},"/users/:user/mailboxes":{"get":{"tags":["Mailboxes"],"summary":"List Mailboxes for a User","operationId":"getusersusermailboxes","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"specialUse","in":"query","description":"Should the response include only folders with specialUse flag set.","required":false,"schema":{"type":"boolean"}},{"name":"showHidden","in":"query","description":"Hidden folders are not included in the listing by default.","required":false,"schema":{"type":"boolean"}},{"name":"counters","in":"query","description":"Should the response include counters (total + unseen). Counters come with some overhead.","required":false,"schema":{"type":"boolean"}},{"name":"sizes","in":"query","description":"Should the response include mailbox size in bytes. Size numbers come with a lot of overhead as an aggregated query is ran.","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"results":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Mailbox","required":true},"name":{"type":"string","description":"Name for the mailbox (unicode string)","required":true},"path":{"type":"string","description":"Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)","required":true},"specialUse":{"type":"string","description":"Either special use identifier or null. One of Drafts, Junk, Sent or Trash","required":true},"modifyIndex":{"type":"number","description":"Modification sequence number. Incremented on every change in the mailbox.","required":true},"subscribed":{"type":"boolean","description":"Mailbox subscription status. IMAP clients may unsubscribe from a folder.","required":true},"retention":{"type":"number","description":"Default retention policy for this mailbox (in ms). If set then messages added to this maibox will be automatically deleted after retention time.","required":false},"hidden":{"type":"boolean","description":"Is the folder hidden or not","required":true},"total":{"type":"number","description":"How many messages are stored in this mailbox","required":true},"unseen":{"type":"number","description":"How many unseen messages are stored in this mailbox","required":true},"size":{"type":"number","description":"Total size of mailbox in bytes.","required":false}},"required":["id","name","path","specialUse","modifyIndex","subscribed","hidden","total","unseen"]},"description":"List of user mailboxes"}},"required":["success","results"]}}}}}},"post":{"tags":["Mailboxes"],"summary":"Create new Mailbox","operationId":"postusersusermailboxes","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"path":{"type":"string","description":"Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)","required":true},"hidden":{"type":"boolean","description":"Is the folder hidden or not. Hidden folders can not be opened in IMAP.","required":false},"retention":{"type":"number","description":"Retention policy for the created Mailbox. Milliseconds after a message added to mailbox expires. Set to 0 to disable.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["path"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Mailbox","required":true}},"required":["success","id"]}}}}}}},"/users/:user/mailboxes/:mailbox":{"get":{"tags":["Mailboxes"],"summary":"Request Mailbox information","operationId":"getusersusermailboxesmailbox","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"path","in":"query","description":"If mailbox is specified as `resolve` in the path then use this param as mailbox path instead of the given mailbox id.","required":false,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Mailbox","required":true},"name":{"type":"string","description":"Name for the mailbox (unicode string)","required":true},"path":{"type":"string","description":"Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)","required":true},"specialUse":{"type":"string","description":"Either special use identifier or null. One of Drafts, Junk, Sent or Trash","required":true,"example":"\\Draft"},"modifyIndex":{"type":"number","description":"Modification sequence number. Incremented on every change in the mailbox.","required":true},"subscribed":{"type":"boolean","description":"Mailbox subscription status. IMAP clients may unsubscribe from a folder.","required":true},"hidden":{"type":"boolean","description":"Is the folder hidden or not","required":true},"total":{"type":"number","description":"How many messages are stored in this mailbox","required":true},"unseen":{"type":"number","description":"How many unseen messages are stored in this mailbox","required":true}},"required":["success","id","name","path","specialUse","modifyIndex","subscribed","hidden","total","unseen"]}}}}}},"put":{"tags":["Mailboxes"],"summary":"Update Mailbox information","operationId":"putusersusermailboxesmailbox","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"path":{"type":"string","description":"Full path of the mailbox, use this to rename an existing Mailbox","required":false},"retention":{"type":"number","description":"Retention policy for the Mailbox (in ms). Changing retention value only affects messages added to this folder after the change","required":false},"subscribed":{"type":"boolean","description":"Change Mailbox subscription state","required":false},"hidden":{"type":"boolean","description":"Is the folder hidden or not. Hidden folders can not be opened in IMAP.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}},"delete":{"tags":["Mailboxes"],"summary":"Delete a Mailbox","operationId":"deleteusersusermailboxesmailbox","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"user":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"mailbox":{"type":"string","description":"ID of the Mailbox","required":true}},"required":["user","mailbox"]}}},"required":true},"parameters":[{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/mailboxes/:mailbox/messages":{"get":{"tags":["Messages"],"summary":"List messages in a Mailbox","description":"Lists all messages in a mailbox","operationId":"messages","parameters":[{"name":"user","in":"path","description":"ID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"unseen","in":"query","description":"If true, then returns only unseen messages","required":false,"schema":{"type":"boolean"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"threadCounters","in":"query","description":"If true, then includes threadMessageCount in the response. Counters come with some overhead","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"order","in":"query","description":"Ordering of the records by insert date","required":false,"schema":{"type":"any","enum":["asc","desc"]}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}},{"name":"includeHeaders","in":"query","description":"Comma separated list of header keys to include in the response","required":false,"schema":{"type":"alternatives"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"specialUse":{"type":"string","description":"Special use. If available","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetMessagesResult"},"description":"Message listing"}},"required":["success","total","page","previousCursor","nextCursor","specialUse","results"]}}}}}},"put":{"tags":["Messages"],"summary":"Update Message information","description":"This method updates message flags and also allows to move messages to a different mailbox","operationId":"putusersusermailboxesmailboxmessages","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"Message ID. Either singular or comma separated number (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*)","required":true},"moveTo":{"type":"string","description":"ID of the target Mailbox if you want to move messages","required":false},"seen":{"type":"boolean","description":"State of the \\Seen flag","required":false},"deleted":{"type":"boolean","description":"State of the \\Deleted flag","required":false},"flagged":{"type":"boolean","description":"State of the \\Flagged flag","required":false},"draft":{"type":"boolean","description":"State of the \\Draft flag","required":false},"expires":{"oneOf":[{"type":"string","required":false,"format":"date-time"},{"type":"boolean","required":false,"enum":[false]}],"description":"Either expiration date or false to turn off autoexpiration"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["message"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"array","items":{"type":"object","properties":{},"required":[]},"description":"If messages were moved then lists new ID values. Array entry is an array with first element pointing to old ID and second to new ID"},"mailbox":{"type":"string","description":"MoveTo mailbox address","required":false},"updated":{"type":"number","description":"If messages were not moved, then indicates the number of updated messages","required":false}},"required":["success"]}}}}}},"delete":{"tags":["Messages"],"summary":"Delete all Messages from a Mailbox","operationId":"deleteusersusermailboxesmailboxmessages","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"async","in":"query","description":"Schedule deletion task","required":false,"schema":{"type":"boolean"}},{"name":"skipArchive","in":"query","description":"Skip archived messages","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"deleted":{"type":"number","description":"Indicates the count of deleted messages","required":true},"errors":{"type":"number","description":"Indicate the count of errors during the delete","required":true}},"required":["success","deleted","errors"]}}}}}},"post":{"tags":["Messages"],"summary":"Upload Message","description":"This method allows to upload either an RFC822 formatted message or a message structure to a mailbox. Raw message is stored unmodified, no headers are added or removed. If you want to generate the uploaded message from structured data fields, then do not use the raw property.","operationId":"postusersusermailboxesmailboxmessages","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"date":{"type":"string","description":"Date","required":false,"format":"date-time"},"unseen":{"type":"boolean","description":"Is the message unseen or not","required":false},"flagged":{"type":"boolean","description":"Is the message flagged or not","required":false},"draft":{"type":"boolean","description":"Is the message a draft or not","required":false},"raw":{"type":"string","description":"base64 encoded message source. Alternatively, you can provide this value as POST body by using message/rfc822 MIME type. If raw message is provided then it overrides any other mail configuration","required":false,"format":"binary"},"from":{"$ref":"#/components/schemas/AddressOptionalName"},"replyTo":{"$ref":"#/components/schemas/AddressOptionalName"},"to":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the To: header"},"cc":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the Cc: header"},"bcc":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the Bcc: header"},"headers":{"type":"array","items":{"$ref":"#/components/schemas/Header"},"description":"Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically"},"subject":{"type":"string","description":"Message subject. If not then resolved from Reference message","required":false},"text":{"type":"string","description":"Plaintext message","required":false},"html":{"type":"string","description":"HTML formatted message","required":false},"files":{"type":"array","items":{"type":"string","required":false},"description":"Attachments as storage file IDs. NB! When retrieving message info then an array of objects is returned. When uploading a message then an array of IDs is used."},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/Attachment"},"description":"Attachments for the message"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"reference":{"$ref":"#/components/schemas/ReferenceWithAttachments"},"replacePrevious":{"type":"object","description":"If set, then deletes a previous message when storing the new one. Useful when uploading a new Draft message.","properties":{"mailbox":{"type":"string","required":false},"id":{"type":"number","required":true}},"required":["id"]},"bimi":{"$ref":"#/components/schemas/Bimi"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"message":{"type":"object","description":"Message information","properties":{"id":{"type":"number","description":"Message ID in mailbox","required":true},"malbox":{"type":"string","description":"Mailbox ID the message was stored into","required":true},"size":{"type":"number","description":"Size of the RFC822 formatted email","required":true}},"required":["id","malbox","size"]},"previousDeleted":{"type":"boolean","description":"Set if replacing a previous message was requested","required":false},"previousDeleteError":{"type":"string","description":"Previus delete error message","required":false}},"required":["success","message"]}}}}}}},"/users/:user/search":{"get":{"tags":["Messages"],"summary":"Search for messages","description":"This method allows searching for matching messages.","operationId":"search","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"q","in":"query","description":"Additional query string","required":false,"schema":{"type":"string"}},{"name":"mailbox","in":"query","description":"ID of the Mailbox","required":false,"schema":{"type":"string"}},{"name":"id","in":"query","description":"Message ID values, only applies when used in combination with `mailbox`. Either comma separated numbers (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*)","required":false,"schema":{"type":"string"}},{"name":"thread","in":"query","description":"Thread ID","required":false,"schema":{"type":"string"}},{"name":"or","in":"query","description":"At least onOne of the included terms must match","required":false,"schema":{"type":"object"}},{"name":"query","in":"query","description":"Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.","required":false,"schema":{"type":"string"}},{"name":"datestart","in":"query","description":"Datestring for the earliest message storing time","required":false,"schema":{"type":"date"}},{"name":"dateend","in":"query","description":"Datestring for the latest message storing time","required":false,"schema":{"type":"date"}},{"name":"from","in":"query","description":"Partial match for the From: header line","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","description":"Partial match for the To: and Cc: header lines","required":false,"schema":{"type":"string"}},{"name":"subject","in":"query","description":"Partial match for the Subject: header line","required":false,"schema":{"type":"string"}},{"name":"minSize","in":"query","description":"Minimal message size in bytes","required":false,"schema":{"type":"number"}},{"name":"maxSize","in":"query","description":"Maximal message size in bytes","required":false,"schema":{"type":"number"}},{"name":"attachments","in":"query","description":"If true, then matches only messages with attachments","required":false,"schema":{"type":"boolean"}},{"name":"flagged","in":"query","description":"If true, then matches only messages with \\Flagged flags","required":false,"schema":{"type":"boolean"}},{"name":"unseen","in":"query","description":"If true, then matches only messages without \\Seen flags","required":false,"schema":{"type":"boolean"}},{"name":"includeHeaders","in":"query","description":"Comma separated list of header keys to include in the response","required":false,"schema":{"type":"string","example":"List-ID, MIME-Version"}},{"name":"searchable","in":"query","description":"If true, then matches messages not in Junk or Trash","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}},{"name":"threadCounters","in":"query","description":"If true, then includes threadMessageCount in the response. Counters come with some overhead","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"order","in":"query","description":"Ordering of the records by insert date. If no order is supplied, results are sorted by heir mongoDB ObjectId.","required":false,"schema":{"type":"any","enum":["asc","desc"]}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"query":{"type":"string","required":true},"total":{"type":"number","required":true},"page":{"type":"number","required":true},"previousCursor":{"oneOf":[{"type":"boolean","required":false},{"type":"string","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"boolean","required":false},{"type":"string","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetMessagesResult"},"description":"Message listing"}},"required":["success","query","total","page","previousCursor","nextCursor","results"]}}}}}},"post":{"tags":["Messages"],"summary":"Search and update messages","description":"This method allows applying an action to all matching messages. This is an async method so that it will return immediately. Actual modifications are run in the background.","operationId":"searchApply","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"q":{"type":"string","description":"Additional query string","required":false},"mailbox":{"type":"string","description":"ID of the Mailbox","required":false},"id":{"type":"string","description":"Message ID values, only applies when used in combination with `mailbox`. Either comma separated numbers (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*)","required":false},"thread":{"type":"string","description":"Thread ID","required":false},"or":{"type":"object","description":"At least onOne of the included terms must match","properties":{"query":{"type":"string","description":"Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.","required":false},"from":{"type":"string","description":"Partial match for the From: header line","required":false},"to":{"type":"string","description":"Partial match for the To: and Cc: header lines","required":false},"subject":{"type":"string","description":"Partial match for the Subject: header line","required":false}},"required":[]},"query":{"type":"string","description":"Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.","required":false},"datestart":{"type":"string","description":"Datestring for the earliest message storing time","required":false,"format":"date-time"},"dateend":{"type":"string","description":"Datestring for the latest message storing time","required":false,"format":"date-time"},"from":{"type":"string","description":"Partial match for the From: header line","required":false},"to":{"type":"string","description":"Partial match for the To: and Cc: header lines","required":false},"subject":{"type":"string","description":"Partial match for the Subject: header line","required":false},"minSize":{"type":"number","description":"Minimal message size in bytes","required":false},"maxSize":{"type":"number","description":"Maximal message size in bytes","required":false},"attachments":{"type":"boolean","description":"If true, then matches only messages with attachments","required":false},"flagged":{"type":"boolean","description":"If true, then matches only messages with \\Flagged flags","required":false},"unseen":{"type":"boolean","description":"If true, then matches only messages without \\Seen flags","required":false},"includeHeaders":{"type":"string","description":"Comma separated list of header keys to include in the response","required":false,"example":"List-ID, MIME-Version"},"searchable":{"type":"boolean","description":"If true, then matches messages not in Junk or Trash","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false},"action":{"type":"object","description":"Define actions to take with matching messages","properties":{"moveTo":{"type":"string","description":"ID of the target Mailbox if you want to move messages","required":false},"seen":{"type":"boolean","description":"State of the \\Seen flag","required":false},"flagged":{"type":"boolean","description":"State of the \\Flagged flag","required":false}},"required":[]}},"required":["action"]}}},"required":true},"parameters":[{"name":"user","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates if the action succeeded or not","required":true},"scheduled":{"type":"string","description":"ID of the scheduled operation","required":true},"existing":{"type":"boolean","description":"Indicates if the scheduled operation already exists","required":true}},"required":["success","scheduled","existing"]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message":{"get":{"tags":["Messages"],"summary":"Request Message information","operationId":"message","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}},{"name":"replaceCidLinks","in":"query","description":"If true then replaces cid links","required":false,"schema":{"type":"boolean"}},{"name":"markAsSeen","in":"query","description":"If true then marks message as seen","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"number","description":"Message ID","required":true},"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"user":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"envelope":{"$ref":"#/components/schemas/Envelope"},"thread":{"type":"string","description":"ID of the Thread","required":true},"from":{"$ref":"#/components/schemas/Address"},"replyTo":{"$ref":"#/components/schemas/Address"},"to":{"$ref":"#/components/schemas/Address"},"cc":{"$ref":"#/components/schemas/Address"},"bcc":{"$ref":"#/components/schemas/Address"},"subject":{"type":"string","description":"Message subject","required":true},"messageId":{"type":"string","description":"Message-ID header","required":true},"date":{"type":"string","description":"Date string from header","required":true,"format":"date-time"},"idate":{"type":"string","description":"Date string of receive time","required":false,"format":"date-time"},"list":{"$ref":"#/components/schemas/List"},"size":{"type":"number","description":"Message size","required":true},"expires":{"type":"string","description":"Datestring, if set then indicates the time after this message is automatically deleted","required":false},"seen":{"type":"boolean","description":"Does this message have a \\Seen flag","required":true},"deleted":{"type":"boolean","description":"Does this message have a \\Deleted flag","required":true},"flagged":{"type":"boolean","description":"Does this message have a \\Flagged flag","required":true},"draft":{"type":"boolean","description":"Does this message have a \\Draft flag","required":true},"html":{"type":"array","items":{"type":"string","required":false},"description":"An array of HTML string. Every array element is from a separate mime node, usually you would just join these to a single string"},"text":{"type":"string","description":"Plaintext content of the message","required":false},"attachments":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Attachment ID","required":true},"hash":{"type":"string","description":"SHA-256 hash of the contents of the attachment","required":false},"filename":{"type":"string","description":"Filename of the attachment","required":true},"contentType":{"type":"string","description":"MIME type","required":true},"disposition":{"type":"string","description":"Attachment disposition","required":true},"transferEncoding":{"type":"string","description":"Which transfer encoding was used (actual content when fetching attachments is not encoded)","required":true},"related":{"type":"boolean","description":"Was this attachment found from a multipart/related node. This usually means that this is an embedded image","required":true},"sizeKb":{"type":"number","description":"Approximate size of the attachment in kilobytes","required":true}},"required":["id","filename","contentType","disposition","transferEncoding","related","sizeKb"]},"description":"Attachments for the message"},"verificationResults":{"type":"object","description":"Security verification info if message was received from MX. If this property is missing then do not automatically assume invalid TLS, SPF or DKIM.","properties":{"tls":{"$ref":"#/components/schemas/Tls"},"spf":{"type":"object","description":"Domain name (either MFROM or HELO) of verified SPF or false if no SPF match was found","properties":{},"required":[]},"dkim":{"type":"object","description":"Domain name of verified DKIM signature or false if no valid signature was found","properties":{},"required":[]}},"required":["tls","spf","dkim"]},"bimi":{"type":"object","description":"BIMI logo info. If logo validation failed in any way, then this property is not set","properties":{"certified":{"type":"boolean","description":"If true, then this logo is from a VMC file","required":false},"url":{"type":"string","description":"URL of the resource the logo was retrieved from","required":false},"image":{"type":"string","description":"Data URL for the SVG image","required":false}},"required":[]},"contentType":{"type":"object","description":"Parsed Content-Type header. Usually needed to identify encrypted messages and such","properties":{"value":{"type":"string","description":"MIME type of the message, eg. \"multipart/mixed","required":true},"params":{"type":"object","description":"An object with Content-Type params as key-value pairs","properties":{},"required":[]}},"required":["value","params"]},"metaData":{"type":"object","description":"Custom metadata object set for this message","properties":{},"required":[]},"references":{"type":"array","items":{"$ref":"#/components/schemas/ReferenceWithAttachments"},"description":"References"},"files":{"type":"object","description":"List of files added to this message as attachments. Applies to Drafts, normal messages do not have this property. Needed to prevent uploading the same attachment every time a draft is updated","properties":{},"required":[]},"outbound":{"type":"array","items":{"type":"object","properties":{},"required":[]},"description":"Outbound queue entries"},"forwardTargets":{"type":"object","description":"Forward targets","properties":{},"required":[]},"reference":{"type":"object","description":"Referenced message info","properties":{},"required":[]},"answered":{"type":"boolean","description":"\\Answered flag value","required":true},"forwarded":{"type":"boolean","description":"$Forwarded flag value","required":true},"encrypted":{"type":"boolean","description":"True if message is encrypted","required":false}},"required":["success","id","mailbox","user","envelope","thread","from","subject","messageId","date","size","seen","deleted","flagged","draft","contentType","references","answered","forwarded"]}}}}}},"put":{"tags":["Messages"],"summary":"Update message information with path param","description":"This method updates message flags and also allows to move messages to a different mailbox","operationId":"putusersusermailboxesmailboxmessagesmessage","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"moveTo":{"type":"string","description":"ID of the target Mailbox if you want to move messages","required":false},"seen":{"type":"boolean","description":"State of the \\Seen flag","required":false},"deleted":{"type":"boolean","description":"State of the \\Deleted flag","required":false},"flagged":{"type":"boolean","description":"State of the \\Flagged flag","required":false},"draft":{"type":"boolean","description":"State of the \\Draft flag","required":false},"expires":{"oneOf":[{"type":"string","required":false,"format":"date-time"},{"type":"boolean","required":false,"enum":[false]}],"description":"Either expiration date or false to turn off autoexpiration"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID. Either singular or comma separated number (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*)","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"array","items":{"type":"object","properties":{},"required":[]},"description":"If messages were moved then lists new ID values. Array entry is an array with first element pointing to old ID and second to new ID"},"mailbox":{"type":"string","description":"MoveTo mailbox address","required":false},"updated":{"type":"number","description":"If messages were not moved, then indicates the number of updated messages","required":false}},"required":["success"]}}}}}},"delete":{"tags":["Messages"],"summary":"Delete a Message","operationId":"deleteusersusermailboxesmailboxmessagesmessage","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message/message.eml":{"get":{"tags":["Messages"],"summary":"Get Message source","description":"This method returns the full RFC822 formatted source of the stored message","operationId":"raw","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"message/rfc822":{"schema":{"type":"object","properties":{"success":{"type":"string","description":"Success","required":false,"format":"binary"}},"required":[]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message/attachments/:attachment":{"get":{"tags":["Messages"],"summary":"Download Attachment","description":"This method returns attachment file contents in binary form","operationId":"attachment","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}},{"name":"attachment","in":"path","description":"ID of the Attachment","required":true,"schema":{"type":"string"}},{"name":"sendAsString","in":"query","description":"If true then sends the original attachment back in string format with correct encoding.","required":false,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"Success","content":{"application/octet-stream":{"schema":{"type":"object","properties":{"success":{"type":"string","required":false,"format":"binary"}},"required":[]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message/forward":{"post":{"tags":["Messages"],"summary":"Forward stored Message","description":"This method allows either to re-forward a message to an original forward target or forward it to some other address. This is useful if a user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message.","operationId":"postusersusermailboxesmailboxmessagesmessageforward","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"target":{"type":"number","description":"Number of original forwarding target","required":false},"addresses":{"type":"array","items":{"type":"string","required":false},"description":"An array of additional forward targets"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"queueId":{"type":"string","description":"Message ID in outbound queue","required":false},"forwarded":{"type":"array","items":{"$ref":"#/components/schemas/Forwarded"},"description":"Information about forwarding targets"}},"required":["success"]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message/submit":{"post":{"tags":["Messages"],"summary":"Submit Draft for delivery","description":"This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder.","operationId":"postusersusermailboxesmailboxmessagesmessagesubmit","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"deleteFiles":{"type":"boolean","description":"If true then deletes attachment files listed in metaData.files array","required":false},"sendTime":{"type":"string","description":"Datestring for delivery if message should be sent some later time","required":false,"format":"date-time"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"queueId":{"type":"string","description":"Message ID in outbound queue","required":true},"message":{"$ref":"#/components/schemas/Message"}},"required":["success","queueId"]}}}}}}},"/users/:user/outbound/:queueId":{"delete":{"tags":["Messages"],"summary":"Delete an Outbound Message","description":"You can delete outbound emails that are still in queue. Queue ID can be found from the `outbound` property of a stored email.","operationId":"deleteusersuseroutboundqueueid","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"queueId","in":"path","description":"Outbound queue ID of the message","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/archived/messages":{"get":{"tags":["Archive"],"summary":"List archived messages","description":"Archive contains all recently deleted messages besides Drafts etc.","operationId":"archived","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"order","in":"query","description":"Ordering of the records by insert date","required":false,"schema":{"type":"any","enum":["asc","desc"]}},{"name":"includeHeaders","in":"query","description":"Comma separated list of header keys to include in the response","required":false,"schema":{"type":"string","example":"List-ID, MIME-Version"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetMessagesResult"},"description":"Message listing"}},"required":["success","total","page","previousCursor","nextCursor","results"]}}}}}}},"/users/:user/archived/restore":{"post":{"tags":["Archive"],"summary":"Restore archived messages","description":"Initiates a restore task to move archived messages of a date range back to the mailboxes the messages were deleted from. If target mailbox does not exist, then the messages are moved to INBOX.","operationId":"create_restore_task","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"start":{"type":"string","description":"Datestring","required":true,"format":"date-time"},"end":{"type":"string","description":"Datestring","required":true,"format":"date-time"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["start","end"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"task":{"type":"string","description":"Task ID","required":true}},"required":["success","task"]}}}}}}},"/users/:user/archived/messages/:message/restore":{"post":{"tags":["Archive"],"summary":"Restore archived messages","description":"Initiates a restore task to move archived messages of a date range back to the mailboxes the messages were deleted from. If target mailbox does not exist, then the messages are moved to INBOX.","operationId":"archived_restore","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"mailbox":{"type":"string","description":"ID of the target Mailbox. If not set then original mailbox is used.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"mailbox":{"type":"string","description":"Maibox ID the message was moved to","required":true},"id":{"type":"number","description":"New ID for the Message","required":true}},"required":["success","mailbox","id"]}}}}}}},"/users/:user/storage":{"post":{"tags":["Storage"],"summary":"Upload file","description":"This method allows to upload an attachment to be linked from a draft","operationId":"postusersuserstorage","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"filename":{"type":"string","description":"Name of the file","required":false},"contentType":{"type":"string","description":"MIME type of the file. Is detected from the file name by default","required":false},"encoding":{"type":"string","description":"Encoding of the file content. Useful if you want to upload the file in base64 encoded format. Valid options \"base64\", \"hex\", \"utf8\"","required":false,"enum":["base64"]},"content":{"type":"string","description":"File content in binary","required":true,"format":"binary"},"cid":{"type":"string","description":"content ID","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["content"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"File ID","required":true}},"required":["success","id"]}}}}}},"get":{"tags":["Storage"],"summary":"List stored files","operationId":"getusersuserstorage","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"query","in":"query","description":"partial match of a filename","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"total":{"type":"number","description":"How many results were found","required":true,"example":541},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true,"example":1},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetFilesResult"},"description":"File listing"}},"required":["success","total","page","previousCursor","nextCursor","results"]}}}}}}},"/users/:user/storage/:file":{"delete":{"tags":["Storage"],"summary":"Delete a File","operationId":"deleteusersuserstoragefile","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"file","in":"path","description":"ID of the File","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}},"get":{"tags":["Storage"],"summary":"Download File","description":"This method returns stored file contents in binary form","operationId":"storagefile","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"file","in":"path","description":"ID of the File","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/octet-stream":{"schema":{"type":"string","required":false,"format":"binary"}}}}}}},"/filters":{"get":{"tags":["Filters"],"summary":"List all Filters","operationId":"filters","parameters":[{"name":"forward","in":"query","description":"Partial match of a forward email address or URL","required":false,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"total":{"type":"number","description":"How many results were found","required":true,"example":541},"page":{"type":"number","description":"Current page number. Derived from page query argument.","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetAllFiltersResult"},"description":"Address listing"}},"required":["success","total","page","previousCursor","nextCursor","results"]}}}}}}},"/users/:user/filters":{"get":{"tags":["Filters"],"summary":"List Filters for a User","operationId":"getusersuserfilters","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"limits":{"type":"object","description":"Filter usage limits for the user account","properties":{"allowed":{"type":"number","description":"How many filters are allowed","required":false},"used":{"type":"number","description":"How many filters have been created","required":false}},"required":[]},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetFiltersResult"},"description":"Filter description"}},"required":["success","limits","results"]}}}}}},"post":{"tags":["Filters"],"summary":"Create a new Filter","operationId":"postusersuserfilters","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the Filter","required":false},"query":{"$ref":"#/components/schemas/Query"},"action":{"$ref":"#/components/schemas/Action"},"disabled":{"type":"boolean","description":"If true then this filter is ignored","required":false},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["query","action"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID for the created filter","required":true}},"required":["success","id"]}}}}}}},"/users/:user/filters/:filter":{"get":{"tags":["Filters"],"summary":"Request Filter information","operationId":"getusersuserfiltersfilter","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"filter","in":"path","description":"Filters unique ID","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Filters unique ID","required":true},"name":{"type":"string","description":"Name for the filter","required":true},"created":{"type":"string","description":"Datestring of the time the filter was created","required":true,"format":"date-time"},"query":{"$ref":"#/components/schemas/Query"},"action":{"$ref":"#/components/schemas/Action"},"disabled":{"type":"boolean","description":"If true, then this filter is ignored","required":true},"metaData":{"type":"object","description":"Custom metadata value","properties":{},"required":[]}},"required":["success","id","name","created","query","action","disabled"]}}}}}},"delete":{"tags":["Filters"],"summary":"Delete a Filter","operationId":"deleteusersuserfiltersfilter","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"filter","in":"path","description":"Filters unique ID","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}},"put":{"tags":["Filters"],"summary":"Update Filter information","operationId":"putusersuserfiltersfilter","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the Filter","required":false},"query":{"$ref":"#/components/schemas/Query"},"action":{"$ref":"#/components/schemas/Action"},"disabled":{"type":"boolean","description":"If true then this filter is ignored","required":false},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"filter","in":"path","description":"Filters unique ID","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/domainaccess/:tag/allow":{"post":{"tags":["DomainAccess"],"summary":"Add domain to allowlist","description":"If an email is sent from a domain that is listed in the allowlist then it is never marked as spam. Lists apply for tagged users.","operationId":"postdomainaccesstagallow","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"domain":{"type":"string","description":"Domain name to allowlist for users/addresses that include this tag","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["domain"]}}},"required":true},"parameters":[{"name":"tag","in":"path","description":"Tag to look for","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID for the created record","required":true}},"required":["success","id"]}}}}}},"get":{"tags":["DomainAccess"],"summary":"List allowlisted domains","operationId":"getdomainaccesstagallow","parameters":[{"name":"tag","in":"path","description":"Tag to look for","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetAllowedDomainResult"},"description":"Domain list"}},"required":["success","results"]}}}}}}},"/domainaccess/:tag/block":{"post":{"tags":["DomainAccess"],"summary":"Add domain to blocklist","description":"If an email is sent from a domain that is listed in the blocklist then it is always marked as spam. Lists apply for tagged users.","operationId":"postdomainaccesstagblock","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"domain":{"type":"string","description":"Domain name to blocklist for users/addresses that include this tag","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["domain"]}}},"required":true},"parameters":[{"name":"tag","in":"path","description":"Tag to look for","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID for the created record","required":true}},"required":["success","id"]}}}}}},"get":{"tags":["DomainAccess"],"summary":"List blocklisted domains","operationId":"getdomainaccesstagblock","parameters":[{"name":"tag","in":"path","description":"Tag to look for","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetBlockedDomainResult"},"description":"Domain list"}},"required":["success","results"]}}}}}}},"/domainaccess/:domain":{"delete":{"tags":["DomainAccess"],"summary":"Delete a Domain from listing","operationId":"deletedomainaccessdomain","parameters":[{"name":"domain","in":"path","description":"Listed domain's unique ID","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"deleted":{"type":"string","description":"Deleted domain's unique ID","required":true}},"required":["success","deleted"]}}}}}}},"/users/:user/asps":{"get":{"tags":["ApplicationPasswords"],"summary":"List Application Passwords","operationId":"getusersuserasps","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"showAll","in":"query","description":"If not true then skips entries with a TTL set","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetASPsResult"},"description":"Event listing"}},"required":["success","results"]}}}}}},"post":{"tags":["ApplicationPasswords"],"summary":"Create new Application Password","operationId":"postusersuserasps","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"description":{"type":"string","description":"Description for the Application Password entry","required":true},"scopes":{"type":"array","items":{"type":"string","required":true,"enum":["imap","pop3","smtp","*"]},"description":"List of scopes this Password applies to. Special scope \"*\" indicates that this password can be used for any scope except \"master\""},"address":{"type":"string","description":"E-mail address to be used as the account address in mobileconfig file. Must be one of the listed identity addresses of the user. Defaults to the main address of the user","required":false},"password":{"type":"string","description":"Optional pregenerated password. Must be 16 characters, latin letters only.","required":false},"generateMobileconfig":{"type":"boolean","description":"If true then result contains a mobileconfig formatted file with account config","required":false},"ttl":{"type":"number","description":"TTL in seconds for this password. Every time password is used, TTL is reset to this value","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["description"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Application Password","required":true},"password":{"type":"string","description":"Application Specific Password. Generated password is whitespace agnostic, so it could be displayed to the client as \"abcd efgh ijkl mnop\" instead of \"abcdefghijklmnop\"","required":true},"mobileconfig":{"type":"string","description":"Base64 encoded mobileconfig file. Generated profile file should be sent to the client with Content-Type value of application/x-apple-aspen-config.","required":true},"name":{"type":"string","description":"Account name","required":true},"address":{"type":"string","description":"Account address or the address specified in params of this endpoint","required":true}},"required":["success","id","password","mobileconfig","name","address"]}}}}}}},"/users/:user/asps/:asp":{"get":{"tags":["ApplicationPasswords"],"summary":"Request ASP information","operationId":"getusersuseraspsasp","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"asp","in":"path","description":"ID of the Application Password","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Application Password","required":true},"description":{"type":"string","description":"Description","required":true},"scopes":{"type":"array","items":{"type":"string","required":true,"enum":["imap","pop3","smtp","*"]},"description":"Allowed scopes for the Application Password"},"lastUse":{"$ref":"#/components/schemas/LastUse"},"created":{"type":"string","description":"Datestring","required":true,"format":"date-time"},"expires":{"type":"string","description":"Application password expires after the given date","required":true,"format":"date-time"}},"required":["success","id","description","scopes","lastUse","created","expires"]}}}}}},"delete":{"tags":["ApplicationPasswords"],"summary":"Delete an Application Password","operationId":"deleteusersuseraspsasp","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"asp","in":"path","description":"ID of the Application Password","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/2fa/totp/setup":{"post":{"tags":["TwoFactorAuth"],"summary":"Generate TOTP seed","description":"This method generates TOTP seed and QR code for 2FA. User needs to verify the seed value using 2fa/totp/enable endpoint","operationId":"postusersuser2fatotpsetup","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"label":{"type":"string","description":"Label text for QR code (defaults to username)","required":false},"issuer":{"type":"string","description":"Description text for QR code (defaults to \"WildDuck\")","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["issuer"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"seed":{"type":"string","description":"Generated TOTP seed value","required":true},"qrcode":{"type":"string","description":"Base64 encoded QR code","required":true}},"required":["success","seed","qrcode"]}}}}}}},"/users/:user/2fa/totp/enable":{"post":{"tags":["TwoFactorAuth"],"summary":"Enable TOTP seed","description":"This method enables TOTP for a user by verifying the seed value generated from 2fa/totp/setup","operationId":"postusersuser2fatotpenable","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"token":{"type":"string","description":"6-digit number that matches seed value from 2fa/totp/setup","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["token"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/2fa/totp":{"delete":{"tags":["TwoFactorAuth"],"summary":"Disable TOTP auth","description":"This method disables TOTP for a user. Does not affect other 2FA mechanisms a user might have set up","operationId":"deleteusersuser2fatotp","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/2fa/totp/check":{"post":{"tags":["TwoFactorAuth"],"summary":"Validate TOTP Token","description":"This method checks if a TOTP token provided by a User is valid for authentication","operationId":"postusersuser2fatotpcheck","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"token":{"type":"string","description":"6-digit number","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["token"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/2fa":{"delete":{"tags":["TwoFactorAuth"],"summary":"Disable 2FA","description":"This method disables all 2FA mechanisms a user might have set up","operationId":"deleteusersuser2fa","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/2fa/custom":{"put":{"tags":["TwoFactorAuth"],"summary":"Enable custom 2FA for a user","description":"This method disables account password for IMAP/POP3/SMTP","operationId":"putusersuser2facustom","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}},"delete":{"tags":["TwoFactorAuth"],"summary":"Disable custom 2FA for a user","description":"This method disables custom 2FA. If it was the only 2FA set up, then account password for IMAP/POP3/SMTP gets enabled again","operationId":"deleteusersuser2facustom","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/2fa/webauthn/credentials":{"get":{"tags":["TwoFactorAuth"],"summary":"Get WebAuthN credentials for a user","description":"This method returns the list of WebAuthN credentials for a given user","operationId":"getusersuser2fawebauthncredentials","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"credentials":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Credential ID","required":true},"rawId":{"type":"string","description":"Raw ID string of the credential in hex","required":true},"description":{"type":"string","description":"Descriptive name for the authenticator","required":true},"authenticatorAttachment":{"type":"string","description":"Indicates whether authenticators is a part of the OS (\"platform\"), or roaming authenticators (\"cross-platform\")","required":true,"example":"platform"}},"required":["id","rawId","description","authenticatorAttachment"]},"description":"List of credentials"}},"required":["success","credentials"]}}}}}}},"/users/:user/2fa/webauthn/credentials/:credential":{"delete":{"tags":["TwoFactorAuth"],"summary":"Remove WebAuthN authenticator","description":"This method deletes the given WebAuthN authenticator for given user.","operationId":"deleteusersuser2fawebauthncredentialscredential","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"credential","in":"path","description":"Credential ID","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"deleted":{"type":"boolean","description":"Specifies whether the given credential has been deleted","required":true}},"required":["success","deleted"]}}}}}}},"/users/:user/2fa/webauthn/registration-challenge":{"post":{"tags":["TwoFactorAuth"],"summary":"Get the WebAuthN registration challenge","description":"This method initiates the WebAuthN authenticator registration challenge","operationId":"postusersuser2fawebauthnregistrationchallenge","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"description":{"type":"string","description":"Descriptive name for the authenticator","required":true},"origin":{"type":"string","description":"Origin","required":true},"authenticatorAttachment":{"type":"string","description":"Indicates whether authenticators should be part of the OS (\"platform\"), or can be roaming authenticators (\"cross-platform\")","required":false,"enum":["platform","cross-platform"],"example":"cross-platform"},"rpId":{"type":"string","description":"Relaying party ID. Is domain.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["description","origin"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"registrationOptions":{"type":"object","properties":{"challenge":{"type":"string","description":"Challenge as a hex string","required":true},"user":{"type":"object","properties":{"id":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"name":{"type":"string","description":"User address or name","required":true},"displayName":{"type":"string","description":"User display name or username","required":true}},"required":["id","name","displayName"]},"authenticatorSelection":{"type":"object","description":"Data about the authenticator","properties":{"authenticatorAttachment":{"type":"string","description":"\"platform\" or \"cross-platform\"","required":true}},"required":["authenticatorAttachment"]},"rp":{"type":"object","description":"Relaying party data","properties":{"name":{"type":"string","description":"Rp name","required":true},"id":{"type":"string","description":"Rp ID. Domain","required":true},"icon":{"type":"string","description":"Rp icon. data/image string in base64 format","required":false}},"required":["name","id"]},"excludeCredentials":{"type":"array","items":{"type":"object","properties":{"rawId":{"type":"string","description":"Raw ID of the credential as hex string","required":true},"type":{"type":"string","description":"Type of the credential","required":true},"transports":{"type":"array","items":{"type":"string","required":true},"description":"Credential transports. If authenticatorAttachment is \"platform\" then [\"internal\"] otherwise [\"usb\", \"nfc\", \"ble\"]"}},"required":["rawId","type","transports"]},"description":"List of credentials to exclude"}},"required":["challenge","authenticatorSelection","rp"]}},"required":["success"]}}}}}}},"/users/:user/2fa/webauthn/registration-attestation":{"post":{"tags":["TwoFactorAuth"],"summary":"Attestate WebAuthN authenticator","description":"Attestation is used to verify the authenticity of the authenticator and provide assurances about its features.","operationId":"postusersuser2fawebauthnregistrationattestation","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"challenge":{"type":"string","description":"Challenge as hex string","required":true},"rawId":{"type":"string","description":"Credential ID/RawID as hex string","required":true},"clientDataJSON":{"type":"string","description":"Clientside data JSON as hex string","required":true},"attestationObject":{"type":"string","description":"Attestation object represented as a hex string","required":true},"rpId":{"type":"string","description":"Relaying party ID. Is domain.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["challenge","rawId","clientDataJSON","attestationObject"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Credential ID","required":true},"rawId":{"type":"string","description":"Credential RawID as a hex string","required":true},"description":{"type":"string","description":"Description for the authenticator","required":true},"authenticatorAttachment":{"type":"string","description":"Specifies whether authenticator is \"platform\" or \"cross-platform\"","required":true}},"required":["success","id","rawId","description","authenticatorAttachment"]}}}}}}},"/users/:user/2fa/webauthn/authentication-challenge":{"post":{"tags":["TwoFactorAuth"],"summary":"Begin WebAuthN authentication challenge","description":"This method retrieves the WebAuthN PublicKeyCredentialRequestOptions object to use it for authentication","operationId":"postusersuser2fawebauthnauthenticationchallenge","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"origin":{"type":"string","description":"Origin domain","required":true},"authenticatorAttachment":{"type":"string","description":"Indicates whether authenticators should be part of the OS (\"platform\"), or can be roaming authenticators (\"cross-platform\")","required":false,"enum":["platform","cross-platform"],"example":"cross-platform"},"rpId":{"type":"string","description":"Relaying party ID. Domain","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["origin"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"authenticationOptions":{"type":"object","description":"PublicKeyCredentialRequestOptions object","properties":{"challenge":{"type":"string","description":"Challenge as hex string","required":true},"allowCredentials":{"type":"array","items":{"type":"object","properties":{"rawId":{"type":"string","description":"RawId of the credential as hex string","required":true},"type":{"type":"string","description":"Credential type","required":true}},"required":["rawId","type"]},"description":"Allowed credential(s) based on the request"},"rpId":{"type":"string","description":"Relaying Party ID. Domain","required":false},"rawChallenge":{"type":"string","description":"Raw challenge bytes. ArrayBuffer","required":false},"attestation":{"type":"string","description":"Attestation string. `direct`/`indirect`/`none`","required":false},"extensions":{"type":"object","description":"Any credential extensions","properties":{},"required":[]},"userVerification":{"type":"string","description":"User verification type. `required`/`preferred`/`discouraged`","required":false},"timeout":{"type":"number","description":"Timeout in milliseconds (ms)","required":false}},"required":["challenge","allowCredentials"]}},"required":["success","authenticationOptions"]}}}}}}},"/users/:user/2fa/webauthn/authentication-assertion":{"post":{"tags":["TwoFactorAuth"],"summary":"WebAuthN authentication Assertion","description":"Assert WebAuthN authentication request and actually authenticate the user","operationId":"postusersuser2fawebauthnauthenticationassertion","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"challenge":{"type":"string","description":"Challenge of the credential as hex string","required":true},"rawId":{"type":"string","description":"RawId of the credential","required":true},"clientDataJSON":{"type":"string","description":"Client data JSON as hex string","required":true},"authenticatorData":{"type":"string","description":"Authentication data as hex string","required":true},"signature":{"type":"string","description":"Private key encrypted signature to verify with public key on the server. Hex string","required":true},"rpId":{"type":"string","description":"Relaying party ID. Domain","required":false},"token":{"type":"boolean","description":"If true response will contain the user auth token","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["challenge","rawId","clientDataJSON","authenticatorData","signature"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"response":{"type":"object","description":"Auth data","properties":{"authenticated":{"type":"boolean","description":"Authentication status","required":true},"credential":{"type":"string","description":"WebAuthN credential ID","required":true}},"required":["authenticated","credential"]},"token":{"type":"string","description":"User auth token","required":false}},"required":["success","response"]}}}}}}},"/users/:user/updates":{"get":{"tags":["Users"],"summary":"Open change stream","description":"This api call returns an EventSource response. Listen on this stream to get notifications about changes in messages and mailboxes. Returned events are JSON encoded strings","operationId":"getusersuserupdates","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"Last-Event-ID","in":"query","description":"Last event ID header as query param","required":false,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"text/event-stream":{"schema":{"type":"string","required":false}}}}}}},"/preauth":{"post":{"tags":["Authentication"],"summary":"Pre-auth check","description":"Check if an username exists and can be used for authentication","operationId":"postpreauth","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"oneOf":[{"type":"string","required":false},{"type":"string","required":false}],"description":"Username or E-mail address"},"scope":{"type":"string","description":"Required scope. One of master, imap, smtp, pop3","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["username"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"username":{"type":"string","description":"Username of authenticated User","required":true},"scope":{"type":"string","description":"The scope this authentication is valid for","required":true},"require2fa":{"type":"array","items":{"type":"string","required":false},"description":"List of enabled 2FA mechanisms"}},"required":["success","id","username","scope","require2fa"]}}}}}}},"/authenticate":{"post":{"tags":["Authentication"],"summary":"Authenticate a User","operationId":"postauthenticate","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"oneOf":[{"type":"string","required":false},{"type":"string","required":false}],"description":"Username or E-mail address"},"password":{"type":"string","description":"Password","required":true},"protocol":{"type":"string","description":"Application identifier for security logs","required":false},"scope":{"type":"string","description":"Required scope. One of master, imap, smtp, pop3","required":false},"appId":{"type":"string","description":"Optional appId which is the URL of the app","required":false},"token":{"type":"boolean","description":"If true then generates a temporary access token that is valid for this user. Only available if scope is \"master\". When using user tokens then you can replace user ID in URLs with \"me\".","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["username","password"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"username":{"type":"string","description":"Username of authenticated User","required":true},"scope":{"type":"string","description":"The scope this authentication is valid for","required":true},"require2fa":{"type":"array","items":{"type":"string","required":false},"description":"List of enabled 2FA mechanisms"},"requirePasswordChange":{"type":"boolean","description":"Indicates if account hassword has been reset and should be replaced","required":true},"token":{"type":"string","description":"If access token was requested then this is the value to use as access token when making API requests on behalf of logged in user.","required":false}},"required":["success","id","username","scope","require2fa","requirePasswordChange"]}}}}}},"delete":{"tags":["Authentication"],"summary":"Invalidate authentication token","description":"This method invalidates currently used authentication token. If token is not provided then nothing happens","operationId":"deleteauthenticate","parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/users/:user/authlog":{"get":{"tags":["Authentication"],"summary":"List authentication Events","operationId":"authlog","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"action","in":"query","description":"Limit listing only to values with specific action value","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"filterip","in":"query","description":"Limit listing only to values with specific IP address","required":false,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"action":{"type":"string","description":"Limit listing only to values with specific action value","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"type":"string","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"},"nextCursor":{"type":"string","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetAuthlogResult"}}},"required":["success","action","total","page","results"]}}}}}}},"/users/:user/authlog/:event":{"get":{"tags":["Authentication"],"summary":"Request Event information","operationId":"getusersuserauthlogevent","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"event","in":"path","description":"ID of the Event","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"ID of the event","required":true},"action":{"type":"string","description":"Action identifier","required":true},"result":{"type":"string","description":"Did the action succeed","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false},"created":{"type":"string","description":"Datestring of the Event time","required":true,"format":"date-time"},"protocol":{"type":"string","description":"Protocol that the authentication was made from","required":false},"requiredScope":{"type":"string","description":"Scope of the auth","required":false},"last":{"type":"string","description":"Date of the last update of Event","required":true,"format":"date-time"},"events":{"type":"number","description":"Number of times same auth Event has accured","required":true},"source":{"type":"string","description":"Source of auth. Example: `master` if password auth was used","required":false},"expires":{"type":"string","description":"After this date the given auth Event will not be updated and instead a new one will be created","required":true,"format":"date-time"}},"required":["id","action","result","created","last","events","expires"]}}}}}}},"/users/:user/autoreply":{"put":{"tags":["Autoreplies"],"summary":"Update Autoreply information","operationId":"putusersuserautoreply","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"boolean","description":"Is the autoreply enabled (true) or not (false)","required":false},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":false,"enum":[""]},"subject":{"type":"string","description":"Subject line for the autoreply. If empty then uses subject of the original message","required":false,"enum":[""]},"text":{"type":"string","description":"Plaintext formatted content of the autoreply message","required":false,"enum":[""]},"html":{"type":"string","description":"HTML formatted content of the autoreply message","required":false,"enum":[""]},"start":{"type":"string","description":"Datestring of the start of the autoreply or boolean false to disable start checks","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"Datestring of the end of the autoreply or boolean false to disable end checks","required":false,"format":"date-time","enum":[false]},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Autoreply ID","required":true}},"required":["success","id"]}}}}}},"get":{"tags":["Autoreplies"],"summary":"Request Autoreply information","operationId":"getusersuserautoreply","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"status":{"type":"boolean","description":"Is the autoreply enabled (true) or not (false)","required":false},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":false,"enum":[""]},"subject":{"type":"string","description":"Subject line for the autoreply. If empty then uses subject of the original message","required":false,"enum":[""]},"text":{"type":"string","description":"Plaintext formatted content of the autoreply message","required":false,"enum":[""]},"html":{"type":"string","description":"HTML formatted content of the autoreply message","required":false,"enum":[""]},"start":{"type":"string","description":"Datestring of the start of the autoreply or boolean false to disable start checks","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"Datestring of the end of the autoreply or boolean false to disable end checks","required":false,"format":"date-time","enum":[false]},"created":{"type":"string","description":"Datestring of when the Autoreply was created","required":true,"format":"date-time"}},"required":["success","created"]}}}}}},"delete":{"tags":["Autoreplies"],"summary":"Delete Autoreply information","operationId":"deleteusersuserautoreply","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{}}},"/users/:user/submit":{"post":{"tags":["Submission"],"summary":"Submit a Message for Delivery","description":"Use this method to send emails from a user account","operationId":"send","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"mailbox":{"type":"string","description":"ID of the Mailbox","required":false},"from":{"$ref":"#/components/schemas/AddressOptionalName"},"replyTo":{"$ref":"#/components/schemas/AddressOptionalName"},"to":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the To: header"},"cc":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the Cc: header"},"bcc":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the Bcc: header"},"headers":{"type":"array","items":{"$ref":"#/components/schemas/Header"},"description":"Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically"},"subject":{"type":"string","description":"Message subject. If not then resolved from Reference message","required":false},"text":{"type":"string","description":"Plaintext message","required":false},"html":{"type":"string","description":"HTML formatted message","required":false},"attachments":{"type":"array","items":{"type":"object","properties":{"filename":{"type":"string","description":"Attachment filename","required":false},"contentType":{"type":"string","description":"MIME type for the attachment file","required":false},"encoding":{"type":"string","description":"Encoding to use to store the attachments","required":false},"contentTransferEncoding":{"type":"string","description":"Transfer encoding","required":false},"contentDisposition":{"type":"string","description":"Content Disposition","required":false,"enum":["inline","attachment"]},"content":{"type":"string","description":"Base64 encoded attachment content","required":true},"cid":{"type":"string","description":"Content-ID value if you want to reference to this attachment from HTML formatted message","required":false}},"required":["content"]},"description":"Attachments for the message"},"meta":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false},"reference":{"$ref":"#/components/schemas/Reference"},"isDraft":{"type":"boolean","description":"Is the message a draft or not","required":false},"draft":{"type":"object","description":"Draft message to base this one on","properties":{"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"id":{"type":"number","description":"Message ID","required":true}},"required":["mailbox","id"]},"sendTime":{"type":"string","description":"Send time","required":false,"format":"date-time"},"uploadOnly":{"type":"boolean","description":"If true only uploads the message but does not send it","required":false},"envelope":{"type":"object","description":"Optional envelope","properties":{"from":{"$ref":"#/components/schemas/AddressOptionalName"},"to":{"type":"array","items":{"type":"object","description":"Addresses for the To: header","properties":{"name":{"type":"string","description":"Name of the sender","required":false},"address":{"type":"string","description":"Address of the sender","required":true}},"required":["address"]}}},"required":[]}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"message":{"$ref":"#/components/schemas/MessageWithQueueId"}},"required":["success","message"]}}}}}}},"/audit":{"post":{"tags":["Audit"],"summary":"Create new audit","description":"Initiates a message audit","operationId":"postaudit","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"user":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"start":{"type":"string","description":"Start time as ISO date","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"End time as ISO date","required":false,"format":"date-time","enum":[false]},"expires":{"type":"string","description":"Expiration date. Audit data is deleted after this date","required":true,"format":"date-time"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["user","expires"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID for the created Audit","required":true}},"required":["success","id"]}}}}}}},"/audit/:audit":{"get":{"tags":["Audit"],"summary":"Request Audit Info","description":"This method returns information about stored audit","operationId":"getauditaudit","parameters":[{"name":"audit","in":"path","description":"ID of the Audit","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Audit","required":true},"user":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"start":{"type":"string","description":"Start time as ISO date","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"End time as ISO date","required":false,"format":"date-time","enum":[false]},"expires":{"type":"string","description":"Expiration date. Audit data is deleted after this date","required":true,"format":"date-time"},"import":{"type":"object","description":"Audit import data","properties":{"status":{"type":"string","description":"Status of the audit","required":true},"failed":{"type":"number","description":"How many messages failed","required":true},"copied":{"type":"number","description":"How many messages copied","required":true}},"required":["status","failed","copied"]}},"required":["success","id","user","expires","import"]}}}}}}},"/audit/:audit/export.mbox":{"get":{"tags":["Audit"],"summary":"Export Audited Emails","description":"This method returns a mailbox file that contains all audited emails","operationId":"getauditauditexportmbox","parameters":[{"name":"audit","in":"path","description":"ID of the Audit","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/octet-stream":{"schema":{"type":"string","required":false,"format":"binary"}}}}}}},"/domainaliases":{"get":{"tags":["DomainAliases"],"summary":"List registered Domain Aliases","operationId":"domainaliases","parameters":[{"name":"query","in":"query","description":"Partial match of a Domain Alias or Domain name","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"total":{"type":"number","description":"How many results were found","required":true,"example":541},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true,"example":1},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetDomainAliasesResult"},"description":"Aliases listing"}},"required":["success","total","page","previousCursor","nextCursor","results"]}}}}}},"post":{"tags":["DomainAliases"],"summary":"Create new Domain Alias","description":"Add a new Alias for a Domain. This allows to accept mail on username@domain and username@alias","operationId":"postdomainaliases","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"alias":{"type":"string","description":"Domain Alias","required":true},"domain":{"type":"string","description":"Domain name this Alias applies to","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["alias","domain"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Domain Alias","required":true}},"required":["success","id"]}}}}}}},"/domainaliases/resolve/:alias":{"get":{"tags":["DomainAliases"],"summary":"Resolve ID for a domain alias","operationId":"getdomainaliasesresolvealias","parameters":[{"name":"alias","in":"path","description":"Alias domain","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Unique ID (24 byte hex)","required":true}},"required":["success","id"]}}}}}}},"/domainaliases/:alias":{"get":{"tags":["DomainAliases"],"summary":"Request Alias information","operationId":"getdomainaliasesalias","parameters":[{"name":"alias","in":"path","description":"ID of the Alias","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Alias","required":true},"alias":{"type":"string","description":"Alias domain","required":true},"domain":{"type":"string","description":"Alias target","required":true},"created":{"type":"string","description":"Datestring of the time the alias was created","required":true,"format":"date-time"}},"required":["success","id","alias","domain","created"]}}}}}},"delete":{"tags":["DomainAliases"],"summary":"Delete an Alias","operationId":"deletedomainaliasesalias","parameters":[{"name":"alias","in":"path","description":"ID of the Alias","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/dkim":{"get":{"tags":["DKIM"],"summary":"List registered DKIM keys","operationId":"dkim","parameters":[{"name":"query","in":"query","description":"Partial match of a Domain name","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"total":{"type":"number","description":"How many results were found","required":true,"example":541},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true,"example":1},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"query":{"type":"string","description":"Query string. Partial match of a Domain name","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetDkimKeysResult"},"description":"DKIM listing"}},"required":["success","total","page","previousCursor","nextCursor","query","results"]}}}}}},"post":{"tags":["DKIM"],"summary":"Create or update DKIM key for domain","description":"Add a new DKIM key for a Domain or update existing one. There can be single DKIM key registered for each domain name.","operationId":"postdkim","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"domain":{"type":"string","description":"Domain name this DKIM key applies to. Use \"*\" as a special value that will be used for domains that do not have their own DKIM key set","required":true},"selector":{"type":"string","description":"Selector for the key","required":true},"privateKey":{"oneOf":[{"type":"string","description":"PEM format RSA or ED25519 string","required":false},{"type":"string","description":"Raw ED25519 key 44 bytes long if using base64","required":false}],"description":"Pem formatted DKIM private key, raw ED25519 is also allowed. If not set then a new 2048 bit RSA key is generated, beware though that it can take several seconds to complete."},"description":{"type":"string","description":"Key description","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["domain","selector"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the DKIM","required":true},"domain":{"type":"string","description":"The domain this DKIM key applies to","required":true},"selector":{"type":"string","description":"DKIM selector","required":true},"description":{"type":"string","description":"Key description","required":true},"fingerprint":{"type":"string","description":"Key fingerprint (SHA1)","required":true},"publicKey":{"type":"string","description":"Public key in DNS format (no prefix/suffix, single line)","required":true},"dnsTxt":{"$ref":"#/components/schemas/DnsTxt"}},"required":["success","id","domain","selector","description","fingerprint","publicKey","dnsTxt"]}}}}}}},"/dkim/resolve/:domain":{"get":{"tags":["DKIM"],"summary":"Resolve ID for a DKIM domain","operationId":"getdkimresolvedomain","parameters":[{"name":"domain","in":"path","description":"DKIM domain","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"DKIM unique ID (24 byte hex)","required":true,"example":"609d201236d1d936948f23b1"}},"required":["success","id"]}}}}}}},"/dkim/:dkim":{"get":{"tags":["DKIM"],"summary":"Request DKIM information","operationId":"getdkimdkim","parameters":[{"name":"dkim","in":"path","description":"ID of the DKIM","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the DKIM","required":true},"domain":{"type":"string","description":"The domain this DKIM key applies to","required":true},"selector":{"type":"string","description":"DKIM selector","required":true},"description":{"type":"string","description":"Key description","required":true},"fingerprint":{"type":"string","description":"Key fingerprint (SHA1)","required":true},"publicKey":{"type":"string","description":"Public key in DNS format (no prefix/suffix, single line)","required":true},"dnsTxt":{"$ref":"#/components/schemas/DnsTxt"},"created":{"type":"string","description":"DKIM created datestring","required":true,"format":"date-time"}},"required":["success","id","domain","selector","description","fingerprint","publicKey","dnsTxt","created"]}}}}}},"delete":{"tags":["DKIM"],"summary":"Delete a DKIM key","operationId":"deletedkimdkim","parameters":[{"name":"dkim","in":"path","description":"ID of the DKIM","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/certs":{"get":{"tags":["Certs"],"summary":"List registered TLS certificates","operationId":"cert","parameters":[{"name":"query","in":"query","description":"Partial match of a server name","required":false,"schema":{"type":"string","example":"example.com"}},{"name":"altNames","in":"query","description":"Match `query` value against SAN as well (including wildcard names)","required":false,"schema":{"type":"boolean","example":"true"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"query":{"type":"string","description":"Initial query","required":false},"total":{"type":"number","description":"How many results were found","required":true,"example":541},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true,"example":1},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetTLSCertResult"}}},"required":["success","total","page","previousCursor","nextCursor","results"]}}}}}},"post":{"tags":["Certs"],"summary":"Create or update TLS certificate for server name","description":"Add a new TLS certificate for a server name or update existing one. You can add a single certificate for each server name but SAN names are supported as well. For example you can add a sertificate for \"mydomain.com\" that includes \"*.mydomain.com\" in SAN and the same certificate would be used for requests that do not have it's own server name registered but match the SAN value.\n> NB! you must ensure yourself that the `servername` value is actually listed in certificate's common name or SAN as WildDuck is going to use this certificate regardless.","operationId":"postcerts","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"servername":{"type":"string","description":"Server name this TLS certificate applies to","required":true},"privateKey":{"type":"string","description":"PEM formatted TLS private key. Optional if certificate is managed by ACME","required":false},"cert":{"type":"string","description":"PEM formatted TLS certificate or a certificate bundle with concatenated certificate and CA chain. Optional if certificate is managed by ACME","required":false},"ca":{"type":"array","items":{"type":"string","required":false},"description":"CA chain certificates. Not needed if `cert` value is a bundle"},"description":{"type":"string","description":"Certificate description","required":false},"acme":{"type":"boolean","description":"If true then private key and certificate are managed automatically by ACME","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["servername"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the certificate","required":true,"example":"609d201236d1d936948f23b1"},"servername":{"type":"string","description":"The server name this certificate applies to","required":true,"example":"imap.example.com"},"description":{"type":"string","description":"Key description","required":true,"example":"Some notes about this certificate"},"fingerprint":{"type":"string","description":"Key fingerprint (SHA1)","required":true,"example":"59:8b:ed:11:5b:4f:ce:b4:e5:1a:2f:35:b1:6f:7d:93:40:c8:2f:9c:38:3b:cd:f4:04:92:a1:0e:17:2c:3f:f3"},"expires":{"type":"string","description":"Certificate expiration time","required":true,"format":"date-time","example":"2024-06-26T21:55:55.000Z"},"altNames":{"type":"array","items":{"type":"string","required":true},"description":"SAN servernames listed in the certificate"},"acme":{"type":"boolean","description":"If true then private key and certificate are managed automatically by ACME","required":true}},"required":["success","id","servername","description","fingerprint","expires","altNames","acme"]}}}}}}},"/certs/resolve/:servername":{"get":{"tags":["Certs"],"summary":"Resolve ID for a server name","operationId":"getcertsresolveservername","parameters":[{"name":"servername","in":"path","description":"Server name","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Unique ID of the cert (24 byte hex)","required":true,"example":"609d201236d1d936948f23b1"}},"required":["success","id"]}}}}}}},"/certs/:cert":{"get":{"tags":["Certs"],"summary":"Request TLS certificate information","operationId":"getcertscert","parameters":[{"name":"cert","in":"path","description":"ID of the TLS certificate","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the certificate","required":true,"example":"609d201236d1d936948f23b1"},"servername":{"type":"string","description":"The server name this certificate applies to","required":true,"example":"imap.example.com"},"description":{"type":"string","description":"Key description","required":true,"example":"Some notes about this certificate"},"fingerprint":{"type":"string","description":"Key fingerprint (SHA1)","required":true,"example":"59:8b:ed:11:5b:4f:ce:b4:e5:1a:2f:35:b1:6f:7d:93:40:c8:2f:9c:38:3b:cd:f4:04:92:a1:0e:17:2c:3f:f3"},"expires":{"type":"string","description":"Certificate expiration time","required":true,"format":"date-time","example":"2024-06-26T21:55:55.000Z"},"created":{"type":"string","description":"Created datestring","required":true,"format":"date-time","example":"2024-05-13T20:06:46.179Z"},"autogenerated":{"type":"boolean","description":"Was the certificate automatically generated on SNI request","required":false},"altNames":{"type":"array","items":{"type":"string","required":true},"description":"SAN servernames listed in the certificate"},"acme":{"type":"boolean","description":"If true then private key and certificate are managed automatically by ACME","required":true},"hasCert":{"type":"boolean","description":"True if certificate actually has the certificate or private key","required":true}},"required":["success","id","servername","description","fingerprint","expires","created","altNames","acme","hasCert"]}}}}}},"delete":{"tags":["Certs"],"summary":"Delete a TLS certificate","operationId":"deletecertscert","parameters":[{"name":"cert","in":"path","description":"ID of the TLS certificate","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/webhooks":{"get":{"tags":["Webhooks"],"summary":"List registered Webhooks","operationId":"webhooks","parameters":[{"name":"type","in":"query","description":"Prefix or exact match. Prefix match must end with \".*\", eg \"channel.*\". Use \"*\" for all types","required":false,"schema":{"type":"string"}},{"name":"user","in":"query","description":"User ID","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string","example":"eyIkb2lkIjoiNWRmMWZkMmQ3NzkyNTExOGI2MDdjNjg0In0"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string","example":"TMIjjIy23ZGM2kk0lIixygWomEknQDWdmzMNIkbNeO0NNjR"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"total":{"type":"number","description":"How many results were found","required":true,"example":541},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true,"example":1},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetWebhooksResult"},"description":"Webhook listing"}},"required":["success","total","page","previousCursor","nextCursor","results"]}}}}}},"post":{"tags":["Webhooks"],"summary":"Create new Webhook","operationId":"postwebhooks","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"type":{"type":"array","items":{"type":"string","required":false},"description":"An array of event types to match. For prefix match use \".*\" at the end (eg. \"user.*\") or \"*\" for all types"},"user":{"type":"string","description":"User ID to match (only makes sense for user specific resources)","required":false},"url":{"type":"string","description":"URL to POST data to","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["type","url"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"ID of the Webhook","required":true}},"required":["success","id"]}}}}}}},"/webhooks/:webhook":{"delete":{"tags":["Webhooks"],"summary":"Delete a webhook","operationId":"deletewebhookswebhook","parameters":[{"name":"webhook","in":"path","description":"ID of the Webhook","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}}}}},"/settings":{"get":{"tags":["Settings"],"summary":"List registered Settings","operationId":"settings","parameters":[{"name":"filter","in":"query","description":"Optional partial match of the Setting key","required":false,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"filter":{"type":"string","description":"Partial match if requested","required":false},"settings":{"type":"array","items":{"$ref":"#/components/schemas/GetSettingsResult"},"description":"Setting listing"}},"required":["success","settings"]}}}}}}},"/settings/:key":{"post":{"tags":["Settings"],"summary":"Create or Update Setting","description":"Create a new or update an existing setting","operationId":"postsettingskey","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"value":{"type":"object","description":"Setting value","required":true,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["value"]}}},"required":true},"parameters":[{"name":"key","in":"path","description":"Key of the Setting","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"key":{"type":"string","description":"Key of the Setting","required":true}},"required":["success","key"]}}}}}},"get":{"tags":["Settings"],"summary":"Get Setting value","operationId":"getsettingskey","parameters":[{"name":"key","in":"path","description":"Key of the Setting","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"key":{"type":"string","description":"Key of the Setting","required":true},"value":{"oneOf":[{"type":"string","description":"Setting value","required":false},{"type":"number","description":"Setting value","required":false}],"description":"Setting value"},"error":{"type":"string","description":"Error if present","required":false,"example":"Key was not found"}},"required":["success","key"]}}}}}}},"/health":{"get":{"tags":["Health"],"summary":"Check the health of the API","description":"Check the status of the WildDuck API service, that is if db is connected and readable/writable, same for redis.","operationId":"gethealth","parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true}},"required":["success"]}}}},"500":{"description":"Failed","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"message":{"type":"string","description":"Error message specifying what went wrong","required":true}},"required":["success","message"]}}}}}}}},"components":{"schemas":{"Quota":{"type":"object","description":"Quota usage limits","properties":{"allowed":{"type":"number","description":"Allowed quota of the user in bytes","required":true},"used":{"type":"number","description":"Space used in bytes","required":true}},"required":["allowed","used"]},"GetUsersResult":{"type":"object","properties":{"id":{"type":"string","description":"Users unique ID (24byte hex)","required":true},"username":{"type":"string","description":"Username of the User","required":true},"name":{"type":"string","description":"Name of the User","required":true},"address":{"type":"string","description":"Main email address of the User","required":true},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the User"},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"},"enabled2fa":{"type":"array","items":{"type":"string","required":false},"description":"List of enabled 2FA methods"},"autoreply":{"type":"boolean","description":"Is autoreply enabled or not (start time may still be in the future or end time in the past)","required":true},"encryptMessages":{"type":"boolean","description":"If true then received messages are encrypted","required":true},"encryptForwarded":{"type":"boolean","description":"If true then forwarded messages are encrypted","required":true},"quota":{"$ref":"#/components/schemas/Quota"},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]},"internalData":{"type":"object","description":"Custom metadata value for internal use. Included if internalData query argument was true and request was not made using user-role token","properties":{},"required":[]},"hasPasswordSet":{"type":"boolean","description":"If true then the User has a password set and can authenticate","required":true},"activated":{"type":"boolean","description":"Is the account activated","required":true},"disabled":{"type":"boolean","description":"If true then user can not authenticate or receive any new mail","required":true},"suspended":{"type":"boolean","description":"If true then user can not authenticate","required":true}},"required":["id","username","name","address","tags","targets","enabled2fa","autoreply","encryptMessages","encryptForwarded","hasPasswordSet","activated","disabled","suspended"]},"Mailboxes":{"type":"object","description":"Optional names for special mailboxes","properties":{"sent":{"type":"string","required":false},"trash":{"type":"string","required":false},"junk":{"type":"string","required":false},"drafts":{"type":"string","required":false}},"required":[]},"GetAddressesResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"address":{"type":"string","description":"E-mail address string","required":true},"user":{"type":"string","description":"User ID this address belongs to if this is a User address","required":true},"forwarded":{"type":"boolean","description":"If true then it is a forwarded address","required":true},"forwardedDisabled":{"type":"boolean","description":"If true then the forwarded address is disabled","required":true},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]}},"required":["id","name","address","user","forwarded","forwardedDisabled","tags"]},"GetUserAddressesResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":true},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]}},"required":["id","name","address","main","created","tags"]},"GetUserAddressesregisterResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Name from address header","required":false},"address":{"type":"string","description":"E-mail Address","required":true}},"required":["id","address"]},"Autoreply":{"type":"object","description":"Autoreply information","properties":{"status":{"type":"boolean","description":"If true, then autoreply is enabled for this address","required":false},"start":{"type":"string","description":"Either a date string or boolean false to disable start time checks","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"Either a date string or boolean false to disable end time checks","required":false,"format":"date-time","enum":[false]},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":false},"subject":{"type":"string","description":"Autoreply subject line","required":false},"text":{"type":"string","description":"Autoreply plaintext content","required":false},"html":{"type":"string","description":"Autoreply HTML content","required":false}},"required":[]},"Forwards":{"type":"object","description":"Forwarding quota","properties":{"allowed":{"type":"number","description":"How many messages per 24 hours can be forwarded","required":true},"used":{"type":"number","description":"How many messages are forwarded during current 24 hour period","required":true},"ttl":{"type":"number","description":"Time until the end of current 24 hour period","required":true}},"required":["allowed","used","ttl"]},"AddressLimits":{"type":"object","description":"Account limits and usage","properties":{"forwards":{"$ref":"#/components/schemas/Forwards"}},"required":["forwards"]},"AutoreplyInfo":{"type":"object","description":"Autoreply information","properties":{"status":{"type":"boolean","description":"If true, then autoreply is enabled for this address","required":true},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":true},"subject":{"type":"string","description":"Autoreply subject line","required":true},"text":{"type":"string","description":"Autoreply plaintext content","required":true},"html":{"type":"string","description":"Autoreply HTML content","required":true}},"required":["status","name","subject","text","html"]},"Address":{"type":"object","properties":{"name":{"type":"string","description":"Name of the sender/recipient","required":true},"address":{"type":"string","description":"Address of the sender/recipient","required":true}},"required":["name","address"]},"ReferenceWithAttachments":{"type":"object","properties":{"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"id":{"type":"number","description":"Message ID","required":true},"action":{"type":"string","description":"Either reply, replyAll or forward","required":true,"enum":["reply","replyAll","forward"]},"attachments":{"oneOf":[{"type":"boolean","required":false},{"type":"array","items":{"type":"string","required":false}}],"description":"If true, then includes all attachments from the original message. If it is an array of attachment ID's includes attachments from the list"}},"required":["mailbox","id","action"]},"Bimi":{"type":"object","description":"Marks BIMI verification as passed for a domain. NB! BIMI record and logo files for the domain must be valid.","properties":{"domain":{"type":"string","description":"Domain name for the BIMI record. It does not have to be the same as the From address.","required":true},"selector":{"type":"string","description":"Optional BIMI selector","required":false}},"required":["domain"]},"ContentType":{"type":"object","description":"Parsed Content-Type header. Usually needed to identify encrypted messages and such","properties":{"value":{"type":"string","description":"MIME type of the message, eg. \"multipart/mixed\"","required":true},"params":{"type":"object","description":"An object with Content-Type params as key-value pairs","properties":{},"required":[]}},"required":["value","params"]},"GetMessagesResult":{"type":"object","properties":{"id":{"type":"number","description":"ID of the Message","required":true},"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"thread":{"type":"string","description":"ID of the Thread","required":true},"threadMessageCount":{"type":"number","description":"Amount of messages in the Thread. Included if threadCounters query argument was true","required":false},"from":{"$ref":"#/components/schemas/Address"},"to":{"type":"array","items":{"$ref":"#/components/schemas/Address"},"description":"Recipients in To: field"},"cc":{"type":"array","items":{"$ref":"#/components/schemas/Address"},"description":"Recipients in Cc: field"},"bcc":{"type":"array","items":{"$ref":"#/components/schemas/Address"},"description":"Recipients in Bcc: field. Usually only available for drafts"},"messageId":{"type":"string","description":"Message ID","required":true},"subject":{"type":"string","description":"Message subject","required":true},"date":{"type":"string","description":"Date string from header","required":true,"format":"date-time"},"idate":{"type":"string","description":"Date string of receive time","required":false,"format":"date-time"},"intro":{"type":"string","description":"First 128 bytes of the message","required":true},"attachments":{"type":"boolean","description":"Does the message have attachments","required":true},"size":{"type":"number","description":"Message size in bytes","required":true},"seen":{"type":"boolean","description":"Is this message alread seen or not","required":true},"deleted":{"type":"boolean","description":"Does this message have a Deleted flag (should not have as messages are automatically deleted once this flag is set)","required":true},"flagged":{"type":"boolean","description":"Does this message have a Flagged flag","required":true},"draft":{"type":"boolean","description":"is this message a draft","required":true},"answered":{"type":"boolean","description":"Does this message have a Answered flag","required":true},"forwarded":{"type":"boolean","description":"Does this message have a $Forwarded flag","required":true},"references":{"type":"array","items":{"$ref":"#/components/schemas/ReferenceWithAttachments"},"description":"References"},"bimi":{"$ref":"#/components/schemas/Bimi"},"contentType":{"$ref":"#/components/schemas/ContentType"},"encrypted":{"type":"boolean","description":"Specifies whether the message is encrypted","required":false},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]},"headers":{"type":"object","description":"Header object keys requested with the includeHeaders argument","properties":{},"required":[]}},"required":["id","mailbox","thread","to","cc","bcc","messageId","subject","date","intro","attachments","size","seen","deleted","flagged","draft","answered","forwarded","references","bimi","contentType"]},"AddressOptionalName":{"type":"object","description":"Addres for the From: header","properties":{"name":{"type":"string","description":"Name of the sender","required":false},"address":{"type":"string","description":"Address of the sender","required":true}},"required":["address"]},"Header":{"type":"object","properties":{"key":{"type":"string","description":"Header key ('X-Mailer')","required":false},"value":{"type":"string","description":"Header value ('My Awesome Mailing Service')","required":false}},"required":[]},"Attachment":{"type":"object","properties":{"filename":{"type":"string","description":"Attachment filename","required":false},"contentType":{"type":"string","description":"MIME type for the attachment file","required":false},"encoding":{"type":"string","description":"Encoding to use to store the attachments","required":false},"contentTransferEncoding":{"type":"string","description":"Transfer encoding","required":false},"content":{"type":"string","description":"Base64 encoded attachment content","required":true},"cid":{"type":"string","description":"Content-ID value if you want to reference to this attachment from HTML formatted message","required":false},"contentDisposition":{"type":"string","description":"Content Disposition","required":false,"enum":["inline","attachment"]}},"required":["content"]},"Rcpt":{"type":"object","properties":{"value":{"type":"string","description":"RCPT TO address as provided by SMTP client","required":true},"formatted":{"type":"string","description":"Normalized RCPT address","required":true}},"required":["value","formatted"]},"Envelope":{"type":"object","description":"SMTP envelope (if available)","properties":{"from":{"type":"string","description":"Address from MAIL FROM","required":true},"rcpt":{"type":"array","items":{"$ref":"#/components/schemas/Rcpt"},"description":"Array of addresses from RCPT TO (should have just one normally)"}},"required":["from"]},"List":{"type":"object","description":"If set then this message is from a mailing list","properties":{"id":{"type":"string","description":"Value from List-ID header","required":true},"unsubscribe":{"type":"string","description":"Value from List-Unsubscribe header","required":true}},"required":["id","unsubscribe"]},"Tls":{"type":"object","description":"TLS information. Value is false if TLS was not used","properties":{"name":{"type":"object","description":"Cipher name, eg \"ECDHE-RSA-AES128-GCM-SHA256\"","properties":{},"required":[]},"version":{"type":"object","description":"TLS version, eg \"TLSv1/SSLv3\"","properties":{},"required":[]}},"required":["name","version"]},"Forwarded":{"type":"object","properties":{"seq":{"type":"string","description":"Sequence ID","required":true},"type":{"type":"string","description":"Target type","required":true},"value":{"type":"string","description":"Target address","required":true}},"required":["seq","type","value"]},"Message":{"type":"object","description":"Message information","properties":{"id":{"type":"number","description":"Message ID in mailbox","required":true},"mailbox":{"type":"string","description":"Mailbox ID the message was stored into","required":true},"size":{"type":"number","description":"Size of the RFC822 formatted email","required":true}},"required":["id","mailbox","size"]},"GetFilesResult":{"type":"object","properties":{"id":{"type":"string","description":"File ID","required":true},"filename":{"oneOf":[{"type":"string","required":true},{"type":"boolean","required":true}],"description":"Filename. False if none"},"contentType":{"oneOf":[{"type":"string","required":true},{"type":"boolean","required":true}],"description":"Content-Type of the file. False if none"},"cid":{"type":"string","description":"Content ID","required":false},"size":{"type":"number","description":"File size","required":true},"created":{"type":"string","description":"Created datestring","required":true,"format":"date-time"},"md5":{"type":"string","description":"md5 hash","required":true}},"required":["id","filename","contentType","size","created","md5"]},"GetAllFiltersResult":{"type":"object","properties":{"id":{"type":"string","description":"Filter ID","required":true},"user":{"type":"string","description":"User ID","required":true},"name":{"type":"string","description":"Name for the filter","required":true},"created":{"type":"string","description":"Datestring of the time the filter was created","required":true,"format":"date-time"},"query":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter query strings"},"action":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter action strings"},"disabled":{"type":"boolean","description":"If true, then this filter is ignored","required":true},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"}},"required":["id","user","name","created","query","action","disabled"]},"GetFiltersResult":{"type":"object","properties":{"id":{"type":"string","description":"Filter ID","required":true},"name":{"type":"string","description":"Name for the filter","required":true},"created":{"type":"string","description":"Datestring of the time the filter was created","required":true,"format":"date-time"},"query":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter query strings"},"action":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter action strings"},"disabled":{"type":"boolean","description":"If true, then this filter is ignored","required":true},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]}},"required":["id","name","created","query","action","disabled"]},"Query":{"type":"object","description":"Rules that a message must match","properties":{"from":{"type":"string","description":"Partial match for the From: header (case insensitive)","required":false},"to":{"type":"string","description":"Partial match for the To:/Cc: headers (case insensitive)","required":false},"subject":{"type":"string","description":"Partial match for the Subject: header (case insensitive)","required":false},"listId":{"type":"string","description":"Partial match for the List-ID: header (case insensitive)","required":false},"text":{"type":"string","description":"Fulltext search against message text","required":false},"ha":{"type":"boolean","description":"Does a message have to have an attachment or not","required":false},"size":{"type":"number","description":"Message size in bytes. If the value is a positive number then message needs to be larger, if negative then message needs to be smaller than abs(size) value","required":false}},"required":[]},"Action":{"type":"object","description":"Action to take with a matching message","properties":{"seen":{"type":"boolean","description":"If true then mark matching messages as Seen","required":false},"flag":{"type":"boolean","description":"If true then mark matching messages as Flagged","required":false},"delete":{"type":"boolean","description":"If true then do not store matching messages","required":false},"spam":{"type":"boolean","description":"If true then store matching messags to Junk Mail folder","required":false},"mailbox":{"type":"string","description":"Mailbox ID to store matching messages to","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"}},"required":[]},"GetAllowedDomainResult":{"type":"object","properties":{"id":{"type":"string","description":"Entry ID","required":true},"domain":{"type":"string","description":"Allowlisted domain name","required":true},"action":{"type":"string","description":"Action: `allow`","required":true,"example":"allow"}},"required":["id","domain","action"]},"GetBlockedDomainResult":{"type":"object","properties":{"id":{"type":"string","description":"Entry ID","required":true},"domain":{"type":"string","description":"Blocklisted domain name","required":true},"action":{"type":"string","description":"Action: `block`","required":true,"example":"block"}},"required":["id","domain","action"]},"LastUse":{"type":"object","description":"Information about last use","properties":{"time":{"type":"string","description":"Datestring of last use or false if password has not been used","required":true,"format":"date-time"},"event":{"type":"string","description":"Event ID of the security log for the last authentication","required":true}},"required":["time","event"]},"GetASPsResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Application Password","required":true},"description":{"type":"string","description":"Description","required":true},"scopes":{"type":"array","items":{"type":"string","required":true,"enum":["imap","pop3","smtp","*"]},"description":"Allowed scopes for the Application Password"},"lastUse":{"$ref":"#/components/schemas/LastUse"},"created":{"type":"string","description":"Datestring","required":true,"format":"date-time"},"expires":{"type":"string","description":"Application password expires after the given date","required":true,"format":"date-time"}},"required":["id","description","scopes","lastUse","created","expires"]},"GetAuthlogResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the event","required":true},"action":{"type":"string","description":"Action identifier","required":true},"result":{"type":"string","description":"Did the action succeed","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false},"created":{"type":"string","description":"Datestring of the Event time","required":true,"format":"date-time"},"protocol":{"type":"string","description":"Protocol that the authentication was made from","required":false},"requiredScope":{"type":"string","description":"Scope of the auth","required":false},"last":{"type":"string","description":"Date of the last update of data","required":true,"format":"date-time"},"events":{"type":"number","description":"Number of times same auth log has accured","required":true},"source":{"type":"string","description":"Source of auth. Example: `master` if password auth was used","required":false},"expires":{"type":"string","description":"After this date the given auth log document will not be updated and instead a new one will be created","required":true,"format":"date-time"}},"required":["id","action","result","created","last","events","expires"]},"Reference":{"type":"object","description":"Optional referenced email. If uploaded message is a reply draft and relevant fields are not provided then these are resolved from the message to be replied to","properties":{"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"id":{"type":"number","description":"Message ID","required":true},"action":{"type":"string","description":"Either reply, replyAll or forward","required":true,"enum":["reply","replyAll","forward"]}},"required":["mailbox","id","action"]},"MessageWithQueueId":{"type":"object","description":"Information about submitted Message","properties":{"mailbox":{"type":"string","description":"Mailbox ID the message was stored to","required":true},"id":{"type":"number","description":"Message ID in the Mailbox","required":true},"queueId":{"type":"string","description":"Queue ID in MTA","required":true}},"required":["mailbox","id","queueId"]},"GetDomainAliasesResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Domain Alias","required":true},"alias":{"type":"string","description":"Domain Alias","required":true},"domain":{"type":"string","description":"The domain this alias applies to","required":true}},"required":["id","alias","domain"]},"GetDkimKeysResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the DKIM","required":true},"domain":{"type":"string","description":"The domain this DKIM key applies to","required":true},"selector":{"type":"string","description":"DKIM selector","required":true},"description":{"type":"string","description":"Key description","required":true},"fingerprint":{"type":"string","description":"Key fingerprint (SHA1)","required":true},"created":{"type":"string","description":"DKIM created datestring","required":true,"format":"date-time"}},"required":["id","domain","selector","description","fingerprint","created"]},"DnsTxt":{"type":"object","description":"Value for DNS TXT entry","properties":{"name":{"type":"string","description":"Is the domain name of TXT","required":true},"value":{"type":"string","description":"Is the value of TXT","required":true}},"required":["name","value"]},"GetTLSCertResult":{"type":"object","description":"Certificate listing","properties":{"id":{"type":"string","description":"ID of the certificate","required":true,"example":"609d201236d1d936948f23b1"},"servername":{"type":"string","description":"The server name this certificate applies to","required":true,"example":"imap.example.com"},"acme":{"type":"boolean","description":"If true then private key and certificate are managed automatically by ACME","required":true},"description":{"type":"string","description":"Key description","required":true,"example":"Some notes about this certificate"},"fingerprint":{"type":"string","description":"Key fingerprint (SHA1)","required":true,"example":"59:8b:ed:11:5b:4f:ce:b4:e5:1a:2f:35:b1:6f:7d:93:40:c8:2f:9c:38:3b:cd:f4:04:92:a1:0e:17:2c:3f:f3"},"created":{"type":"string","description":"Datestring","required":true,"format":"date-time","example":"2024-03-13T20:06:46.179Z"},"expires":{"type":"string","description":"Certificate expiration time","required":true,"format":"date-time","example":"2024-04-26T21:55:55.000Z"},"autogenerated":{"type":"boolean","description":"Was the certificate automatically generated on SNI request","required":false},"altNames":{"type":"array","items":{"type":"string","required":true},"description":"SAN servernames listed in the certificate"}},"required":["id","servername","acme","description","fingerprint","created","expires","altNames"]},"GetWebhooksResult":{"type":"object","properties":{"id":{"type":"string","description":"Webhooks unique ID (24 byte hex)","required":true},"type":{"type":"array","items":{"type":"string","required":false},"description":"An array of event types this webhook matches"},"user":{"type":"string","description":"User ID or null","required":true},"url":{"type":"string","description":"Webhook URL","required":true}},"required":["id","type","user","url"]},"GetSettingsResult":{"type":"object","properties":{"key":{"type":"string","description":"Setting key","required":true},"value":{"oneOf":[{"type":"string","description":"Setting value","required":false},{"type":"number","description":"Setting value","required":false}],"description":"Setting value"},"name":{"type":"string","description":"Setting name","required":true},"description":{"type":"string","description":"Setting description","required":true},"type":{"type":"string","description":"Value subtype","required":true},"custom":{"type":"boolean","description":"If true then the value is set","required":true}},"required":["key","value","name","description","type","custom"]}},"securitySchemes":{"AccessTokenAuth":{"name":"X-Access-Token","type":"apiKey","in":"header","description":"If authentication is enabled in the WildDuck configuration, you will need to supply an access token in the `X-Access-Token` header.\n```json\n{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}\n```\n"}}},"security":[{"AccessTokenAuth":[]}]} \ No newline at end of file diff --git a/lib/schemas/response/addresses-schemas.js b/lib/schemas/response/addresses-schemas.js index 31491540..22dbf993 100644 --- a/lib/schemas/response/addresses-schemas.js +++ b/lib/schemas/response/addresses-schemas.js @@ -12,7 +12,7 @@ const GetAddressesResult = Joi.object({ forwarded: booleanSchema.required().description('If true then it is a forwarded address'), forwardedDisabled: booleanSchema.required().description('If true then the forwarded address is disabled'), targets: Joi.array().items(Joi.string()).description('List of forwarding targets'), - tags: Joi.array().items().required().description('List of tags associated with the Address'), + tags: Joi.array().items(Joi.string()).required().description('List of tags associated with the Address'), metaData: Joi.object({}).description('Metadata object (if available)'), internalData: Joi.object({}).description('Internal metadata object (if available), not included for user-role requests') }).$_setFlag('objectName', 'GetAddressesResult'); diff --git a/openapidocs.json b/openapidocs.json deleted file mode 100644 index f2e85a13..00000000 --- a/openapidocs.json +++ /dev/null @@ -1 +0,0 @@ -{"openapi":"3.0.0","info":{"title":"WildDuck API","description":"WildDuck API docs","version":"1.0.0","contact":{"url":"https://github.com/nodemailer/wildduck"}},"servers":[{"url":"https://api.wildduck.email"}],"tags":[{"name":"Addresses"},{"name":"ApplicationPasswords"},{"name":"Archive","description":"Archive includes all deleted messages. Once messages are old enough then these are permanenetly deleted from the archive as well. Until then you can restore the deleted messages."},{"name":"Audit","description":"Auditing allows to monitor an email account. All existing, deleted and new emails are copied to the auditing system. See also https://github.com/nodemailer/wildduck-audit-manager"},{"name":"Authentication"},{"name":"Autoreplies"},{"name":"Certs","description":"WildDuck allows to register TLS certificates to be used with SNI connections. These certificates are used by IMAP, POP3, API and SMTP servers when a SNI capable client establishes a TLS connection. This does not apply for MX servers."},{"name":"DKIM","description":"Whenever an email is sent WildDuck checks if there is a DKIM key registered for the domain name of the sender address and uses it to sign the message."},{"name":"DomainAccess","description":"Add sender domain names to allowlist (messages are all accepted) or blocklist (messages are sent to Spam folder)"},{"name":"DomainAliases"},{"name":"Filters"},{"name":"Mailboxes"},{"name":"Messages"},{"name":"Settings"},{"name":"Storage","description":"Storage allows easier attachment handling when composing Draft messages. Instead of uploading the attachmnent with every draft update, you store the attachment to the Storage and then link stored file for the Draft."},{"name":"Submission"},{"name":"TwoFactorAuth"},{"name":"Users"},{"name":"Webhooks"}],"paths":{"/public/*":{"get":{"operationId":"public_get","parameters":[],"responses":{}}},"/.well-known/acme-challenge/:token":{"get":{"operationId":"acmeToken","parameters":[],"responses":{}}},"/users":{"get":{"tags":["Users"],"summary":"List registered Users","operationId":"users","parameters":[{"name":"query","in":"query","description":"Partial match of username or default email address","required":false,"schema":{"type":"string"}},{"name":"forward","in":"query","description":"Partial match of a forward email address or URL","required":false,"schema":{"type":"string"}},{"name":"tags","in":"query","description":"Comma separated list of tags. The User must have at least one to be set","required":false,"schema":{"type":"string"}},{"name":"requiredTags","in":"query","description":"Comma separated list of tags. The User must have all listed tags to be set","required":false,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"internalData","in":"query","description":"If true, then includes internalData in the response. Not shown for user-role tokens.","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"query":{"type":"string","description":"Partial match of username or default email address","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetUsersResult"},"description":"User listing"}},"required":["success","total","page","previousCursor","nextCursor","query","results"]}}}}}},"post":{"tags":["Users"],"summary":"Create new user","operationId":"postusers","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"type":"string","description":"Username of the User. Dots are allowed but informational only (\"user.name\" is the same as \"username\").","required":true},"password":{"type":"string","description":"Password for the account. Set to boolean false to disable password usage for the master scope, Application Specific Passwords would still be allowed","required":true,"enum":[false,""]},"hashedPassword":{"type":"boolean","description":"If true then password is already hashed, so store as is. Supported hashes: pbkdf2, bcrypt ($2a, $2y, $2b), md5 ($1), sha512 ($6), sha256 ($5), argon2 ($argon2d, $argon2i, $argon2id). Stored hashes are rehashed to pbkdf2 on first successful password check.","required":false},"allowUnsafe":{"type":"boolean","description":"If false then validates provided passwords against Have I Been Pwned API. Experimental, so validation is disabled by default but will be enabled automatically in some future version of WildDuck.","required":false},"address":{"type":"string","description":"Default email address for the User (autogenerated if not set)","required":false},"emptyAddress":{"type":"boolean","description":"If true then do not autogenerate missing email address for the User. Only needed if you want to create a user account that does not have any email address associated","required":false},"language":{"type":"string","description":"Language code for the User","required":false},"retention":{"type":"number","description":"Default retention time (in ms). Set to 0 to disable","required":false},"name":{"type":"string","description":"Name of the User","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"},"spamLevel":{"type":"number","description":"Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam","required":false},"quota":{"type":"number","description":"Allowed quota of the user in bytes","required":false},"recipients":{"type":"number","description":"How many messages per 24 hour can be sent","required":false},"forwards":{"type":"number","description":"How many messages per 24 hour can be forwarded","required":false},"filters":{"type":"number","description":"How many filters are allowed for this account","required":false},"requirePasswordChange":{"type":"boolean","description":"If true then requires the user to change password, useful if password for the account was autogenerated","required":false},"imapMaxUpload":{"type":"number","description":"How many bytes can be uploaded via IMAP during 24 hour","required":false},"imapMaxDownload":{"type":"number","description":"How many bytes can be downloaded via IMAP during 24 hour","required":false},"pop3MaxDownload":{"type":"number","description":"How many bytes can be downloaded via POP3 during 24 hour","required":false},"pop3MaxMessages":{"type":"number","description":"How many latest messages to list in POP3 session","required":false},"imapMaxConnections":{"type":"number","description":"How many parallel IMAP connections are alowed","required":false},"receivedMax":{"type":"number","description":"How many messages can be received from MX during 60 seconds","required":false},"fromWhitelist":{"type":"array","items":{"type":"string","required":false},"description":"A list of additional email addresses this user can send mail from. Wildcard is allowed."},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this user"},"addTagsToAddress":{"type":"boolean","description":"If true then autogenerated address gets the same tags as the user","required":false},"uploadSentMessages":{"type":"boolean","description":"If true then all messages sent through MSA are also uploaded to the Sent Mail folder. Might cause duplicates with some email clients, so disabled by default.","required":false},"mailboxes":{"$ref":"#/components/schemas/Mailboxes"},"disabledScopes":{"type":"array","items":{"type":"string","required":false,"enum":["imap","pop3","smtp"]},"description":"List of scopes that are disabled for this user (\"imap\", \"pop3\", \"smtp\")"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"pubKey":{"type":"string","description":"Public PGP key for the User that is used for encryption. Use empty string to remove the key","required":false},"encryptMessages":{"type":"boolean","description":"If true then received messages are encrypted","required":false},"encryptForwarded":{"type":"boolean","description":"If true then forwarded messages are encrypted","required":false},"featureFlags":{"type":"object","description":"Feature flags to specify","properties":{"indexing":{"type":"boolean","required":false}},"required":[]},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["username","password"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true}},"required":["success","id"]}}}}}}},"/users/resolve/:username":{"get":{"tags":["Users"],"summary":"Resolve ID for a username","operationId":"getusersresolveusername","parameters":[{"name":"username","in":"path","description":"Username of the User. Alphanumeric value. Must start with a letter, dots are allowed but informational only (\"user.name\" is the same as \"username\")","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true,"example":true},"id":{"type":"string","description":"Unique ID (24 byte hex)","required":true,"example":"609d201236d1d936948f23b1"}},"required":["success","id"]}}}}}}},"/users/:user":{"get":{"tags":["Users"],"summary":"Request User information","operationId":"getusersuser","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{}},"put":{"tags":["Users"],"summary":"Update User information","operationId":"putusersuser","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"existingPassword":{"type":"string","description":"If provided then validates against account password before applying any changes","required":false},"password":{"type":"string","description":"New password for the account. Set to boolean false to disable password usage for the master scope, Application Specific Passwords would still be allowed","required":false,"enum":[false,""]},"hashedPassword":{"type":"boolean","description":"If true then password is already hashed, so store as is. Supported hashes: pbkdf2, bcrypt ($2a, $2y, $2b), md5 ($1), sha512 ($6), sha256 ($5), argon2 ($argon2d, $argon2i, $argon2id). Stored hashes are rehashed to pbkdf2 on first successful password check.","required":false},"allowUnsafe":{"type":"boolean","description":"If false then validates provided passwords against Have I Been Pwned API. Experimental, so validation is disabled by default but will be enabled automatically in some future version of WildDuck.","required":false},"language":{"type":"string","description":"Language code for the User","required":false},"name":{"type":"string","description":"Name of the User","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"},"spamLevel":{"type":"number","description":"Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam","required":false},"uploadSentMessages":{"type":"boolean","description":"If true then all messages sent through MSA are also uploaded to the Sent Mail folder. Might cause duplicates with some email clients, so disabled by default.","required":false},"fromWhitelist":{"type":"array","items":{"type":"string","required":false},"description":"A list of additional email addresses this user can send mail from. Wildcard is allowed."},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional internal metadata, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"pubKey":{"type":"string","description":"Public PGP key for the User that is used for encryption. Use empty string to remove the key","required":false},"encryptMessages":{"type":"boolean","description":"If true then received messages are encrypted","required":false},"encryptForwarded":{"type":"boolean","description":"If true then forwarded messages are encrypted","required":false},"retention":{"type":"number","description":"Default retention time (in ms). Set to 0 to disable","required":false},"quota":{"type":"number","description":"Allowed quota of the user in bytes","required":false},"recipients":{"type":"number","description":"How many messages per 24 hour can be sent","required":false},"forwards":{"type":"number","description":"How many messages per 24 hour can be forwarded","required":false},"filters":{"type":"number","description":"How many filters are allowed for this account","required":false},"imapMaxUpload":{"type":"number","description":"How many bytes can be uploaded via IMAP during 24 hour","required":false},"imapMaxDownload":{"type":"number","description":"How many bytes can be downloaded via IMAP during 24 hour","required":false},"pop3MaxDownload":{"type":"number","description":"How many bytes can be downloaded via POP3 during 24 hour","required":false},"pop3MaxMessages":{"type":"number","description":"How many latest messages to list in POP3 session","required":false},"imapMaxConnections":{"type":"number","description":"How many parallel IMAP connections are alowed","required":false},"receivedMax":{"type":"number","description":"How many messages can be received from MX during 60 seconds","required":false},"disable2fa":{"type":"boolean","description":"If true, then disables 2FA for this user","required":false},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this user"},"disabledScopes":{"type":"array","items":{"type":"string","required":false,"enum":["imap","pop3","smtp"]},"description":"List of scopes that are disabled for this user (\"imap\", \"pop3\", \"smtp\")"},"disabled":{"type":"boolean","description":"If true then disables user account (can not login, can not receive messages)","required":false},"featureFlags":{"type":"object","description":"Enabled feature flags","properties":{"indexing":{"type":"boolean","required":false}},"required":[]},"suspended":{"type":"boolean","description":"If true then disables authentication","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}},"delete":{"tags":["Users"],"summary":"Delete a User","description":"This method deletes user and address entries from DB and schedules a background task to delete messages. You can call this method several times even if the user has already been deleted, in case there are still some pending messages.","operationId":"deleteusersuser","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"deleteAfter","in":"query","description":"Delete user entry from registry but keep all user data until provided date. User account is fully recoverable up to that date.","required":false,"schema":{"type":"date","enum":[false]}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"code":{"type":"string","description":"Task code. Should be TaskScheduled","required":false,"example":"TaskScheduled"},"user":{"type":"string","description":"User ID","required":false},"addresses":{"type":"object","properties":{"deleted":{"type":"number","description":"Number of deleted addresses","required":false}},"required":[]},"deleteAfter":{"type":"string","description":"Delete after date","required":false,"format":"date-time"},"task":{"type":"string","description":"Task ID","required":false}},"required":["success"]}}}}}}},"/users/:user/logout":{"put":{"tags":["Users"],"summary":"Log out User","operationId":"putusersuserlogout","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"reason":{"type":"string","description":"Message to be shown to connected IMAP client","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}}},"/users/:user/quota/reset":{"post":{"tags":["Users"],"summary":"Recalculate User quota","description":"This method recalculates quota usage for a User. Normally not needed, only use it if quota numbers are way off. This method is not transactional, so if the user is currently receiving new messages then the resulting value is not exact.","operationId":"postusersuserquotareset","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"storageUsed":{"type":"number","description":"Calculated quota usage for the user","required":true},"previousStorageUsed":{"type":"number","description":"Previous storage used","required":true}},"required":["success","storageUsed","previousStorageUsed"]}}}}}}},"/quota/reset":{"post":{"tags":["Users"],"summary":"Recalculate Quota for all Users","description":"This method recalculates quota usage for all Users. Normally not needed, only use it if quota numbers are way off. This method is not transactional, so if the user is currently receiving new messages then the resulting value is not exact.","operationId":"postquotareset","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"task":{"type":"string","description":"Task ID","required":true}},"required":["success","task"]}}}}}}},"/data/export":{"post":{"tags":["Export"],"summary":"Export data","description":"Export data for matching users. Export dump does not include emails, only account structure (user data, password hashes, mailboxes, filters, etc.). A special \"export\"-role access token is required for exporting and importing.","operationId":"postdataexport","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"users":{"type":"array","items":{"type":"string","required":true},"description":"An array of User ID values to export"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"An array of user tags to export. If set then at least one tag must exist on an user."},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/octet-stream":{"schema":{"type":"string","required":false,"format":"binary"}}}}}}},"/data/import":{"post":{"tags":["Export"],"summary":"Import user data","description":"Import data from an export dump. If a database entry already exists, it is not modified. A special \"export\"-role access token is required for exporting and importing.","operationId":"postdataimport","parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"entries":{"type":"number","description":"How many database entries were found from the export file","required":false},"imported":{"type":"number","description":"How many database entries were imported from the export file","required":false},"failed":{"type":"number","description":"How many database entries were not imported due to some error","required":false},"existing":{"type":"number","description":"How many database existing entries were not imported","required":false}},"required":[]}}}}}}},"/users/:user/password/reset":{"post":{"tags":["Users"],"summary":"Reset password for a User","description":"This method generates a new temporary password for a User. Additionally it removes all two-factor authentication settings","operationId":"postusersuserpasswordreset","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"validAfter":{"type":"string","description":"Allow using the generated password not earlier than provided time","required":false,"format":"date-time","enum":[false]},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"password":{"type":"string","description":"Temporary password","required":true},"validAfter":{"type":"string","description":"The date password is valid after","required":false,"format":"date-time"}},"required":["success","password"]}}}}}}},"/users/:user/restore":{"get":{"tags":["Users"],"summary":"Return recovery info for a deleted user","operationId":"getusersuserrestore","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"user":{"type":"string","description":"ID of the deleted User","required":true},"username":{"type":"string","description":"Username of the User","required":true},"storageUsed":{"type":"number","description":"Calculated quota usage for the user","required":true},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the User"},"deleted":{"type":"string","description":"Datestring of the time the user was deleted","required":true,"format":"date-time"},"recoverableAddresses":{"type":"array","items":{"type":"string","required":false},"description":"List of email addresses that can be restored"}},"required":["success","user","username","storageUsed","tags","deleted","recoverableAddresses"]}}}}}},"post":{"tags":["Users"],"summary":"Cancel user deletion task","description":"Use this endpoint to cancel a timed deletion task scheduled by DELETE /user/{id}. If user data is not yet deleted then the account is fully recovered, except any email addresses that might have been already recycled","operationId":"postusersuserrestore","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"code":{"type":"string","description":"Task status code","required":true},"user":{"type":"string","description":"User ID","required":false},"task":{"type":"string","description":"Existing task id","required":false},"addresses":{"type":"object","properties":{"recovered":{"type":"number","description":"Number of recovered addresses","required":false},"main":{"type":"string","description":"Main address","required":false}},"required":[]}},"required":["success","code"]}}}}}}},"/addresses":{"get":{"tags":["Addresses"],"summary":"List registered Addresses","operationId":"addresses","parameters":[{"name":"query","in":"query","description":"Partial match of an address","required":false,"schema":{"type":"string"}},{"name":"forward","in":"query","description":"Partial match of a forward email address or URL","required":false,"schema":{"type":"string"}},{"name":"tags","in":"query","description":"Comma separated list of tags. The Address must have at least one to be set","required":false,"schema":{"type":"string"}},{"name":"requiredTags","in":"query","description":"Comma separated list of tags. The Address must have all listed tags to be set","required":false,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"internalData","in":"query","description":"If true, then includes internalData in the response. Not shown for user-role tokens.","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"query":{"type":"string","description":"Partial match of an address","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetAddressesResult"},"description":"Address listing"}},"required":["success","query","total","page","previousCursor","nextCursor","results"]}}}}}}},"/users/:user/addresses":{"post":{"tags":["Addresses"],"summary":"Create new Address","description":"Add a new email address for a User. Addresses can contain unicode characters. Dots in usernames are normalized so no need to create both \"firstlast@example.com\" and \"first.last@example.com\" Special addresses `*@example.com`, `*suffix@example.com` and `username@*` catches all emails to these domains or users without a registered destination (requires allowWildcard argument)","operationId":"postusersuseraddresses","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"address":{"oneOf":[{"type":"string","description":"E-mail Address","required":true},{"type":"string","required":false}],"description":"E-mail Address"},"name":{"type":"string","description":"Identity name","required":false},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":false},"allowWildcard":{"type":"boolean","description":"If true then address value can be in the form of `*@example.com`, `*suffix@example.com` and `username@*`, otherwise using * is not allowed. Static suffix can be up to 32 characters long.","required":false},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"ID of the address","required":true}},"required":["success","id"]}}}}}},"get":{"tags":["Addresses"],"summary":"List registered Addresses for a User","operationId":"getusersuseraddresses","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"internalData","in":"query","description":"If true, then includes internalData in the response. Not shown for user-role tokens.","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetUserAddressesResult"},"description":"Address listing"}},"required":["success","results"]}}}}}}},"/users/:user/addresses/:address":{"get":{"tags":["Addresses"],"summary":"Request Addresses information","operationId":"getusersuseraddressesaddress","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":true},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]}},"required":["id","name","address","main","created","tags"]}}}}}},"delete":{"tags":["Addresses"],"summary":"Delete an Address","operationId":"deleteusersuseraddressesaddress","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}}},"/users/:user/addresses/:id":{"put":{"tags":["Addresses"],"summary":"Update Address information","operationId":"putusersuseraddressesid","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Identity name","required":false},"address":{"type":"string","description":"New address if you want to rename existing address. Only affects normal addresses, special addresses that include * can not be changed","required":false},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":true},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["main"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}}},"/users/:user/addressregister":{"get":{"tags":["Addresses"],"summary":"List addresses from communication register","operationId":"getusersuseraddressregister","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"query","in":"query","description":"Prefix of an address or a name","required":true,"schema":{"type":"string","example":"`query=john`"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number","example":"`limit=25`"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetUserAddressesregisterResult"},"description":"Address listing"}},"required":["success","results"]}}}}}}},"/addresses/forwarded":{"post":{"tags":["Addresses"],"summary":"Create new forwarded Address","description":"Add a new forwarded email address. Addresses can contain unicode characters. Dots in usernames are normalized so no need to create both \"firstlast@example.com\" and \"first.last@example.com\" Special addresses `*@example.com` and `username@*` catches all emails to these domains or users without a registered destination (requires allowWildcard argument)","operationId":"postaddressesforwarded","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"address":{"oneOf":[{"type":"string","description":"E-mail Address","required":true},{"type":"string","required":false}],"description":"E-mail Address"},"name":{"type":"string","description":"Identity name","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"},"forwards":{"type":"number","description":"Daily allowed forwarding count for this address","required":false},"allowWildcard":{"type":"boolean","description":"If true then address value can be in the form of `*@example.com`, otherwise using * is not allowed","required":false},"autoreply":{"$ref":"#/components/schemas/Autoreply"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["address"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"ID of the Address","required":true}},"required":["success","id"]}}}}}}},"/addresses/forwarded/:id":{"put":{"tags":["Addresses"],"summary":"Update forwarded Address information","operationId":"putaddressesforwardedid","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"address":{"type":"string","description":"New address. Only affects normal addresses, special addresses that include * can not be changed","required":false},"name":{"type":"string","description":"Identity name","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to. If set then overwrites previous targets array"},"forwards":{"type":"number","description":"Daily allowed forwarding count for this address","required":false},"autoreply":{"$ref":"#/components/schemas/Autoreply"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"A list of tags associated with this address"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"internalData":{"type":"object","description":"Optional metadata for internal use, must be an object or JSON formatted string of an object. Not available for user-role tokens","required":false,"format":"any"},"forwardedDisabled":{"type":"boolean","description":"If true then disables forwarded address (stops forwarding messages)","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"id","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}}},"/addresses/forwarded/:address":{"delete":{"tags":["Addresses"],"summary":"Delete a forwarded Address","operationId":"deleteaddressesforwardedaddress","parameters":[{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}},"get":{"tags":["Addresses"],"summary":"Request forwarded Addresses information","operationId":"getaddressesforwardedaddress","parameters":[{"name":"address","in":"path","description":"ID of the Address","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"ID of the Address","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"},"limits":{"$ref":"#/components/schemas/AddressLimits"},"autoreply":{"$ref":"#/components/schemas/AutoreplyInfo"},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]}},"required":["success","id","address","name","limits","autoreply","created","tags"]}}}}}}},"/addresses/resolve/:address":{"get":{"tags":["Addresses"],"summary":"Get Address info","operationId":"getaddressesresolveaddress","parameters":[{"name":"address","in":"path","description":"ID of the Address or e-mail address string","required":true,"schema":{"type":"alternatives"}},{"name":"allowWildcard","in":"query","description":"If true then resolves also wildcard addresses","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"ID of the Address","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"user":{"type":"string","description":"ID of the user if the address belongs to a User","required":true},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets if this is a Forwarded address"},"limits":{"$ref":"#/components/schemas/AddressLimits"},"autoreply":{"$ref":"#/components/schemas/AutoreplyInfo"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"}},"required":["success","id","address","name","user","limits","autoreply","tags","created"]}}}}}}},"/addresses/renameDomain":{"put":{"tags":["Addresses"],"summary":"Rename domain in addresses","description":"Renames domain names for addresses, DKIM keys and Domain Aliases","operationId":"putaddressesrenamedomain","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"oldDomain":{"type":"string","description":"Old Domain Name","required":true},"newDomain":{"type":"string","description":"New Domain Name","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["oldDomain","newDomain"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"modifiedAddresses":{"type":"number","description":"Number of modified addresses","required":true},"modifiedUsers":{"type":"number","description":"Number of modified users","required":true},"modifiedDkim":{"type":"number","description":"Number of modified DKIM keys","required":true},"modifiedAliases":{"type":"number","description":"Number of modified Domain Aliases","required":true}},"required":["success","modifiedAddresses","modifiedUsers","modifiedDkim","modifiedAliases"]}}}}}}},"/users/:user/mailboxes":{"get":{"tags":["Mailboxes"],"summary":"List Mailboxes for a User","operationId":"getusersusermailboxes","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"specialUse","in":"query","description":"Should the response include only folders with specialUse flag set.","required":false,"schema":{"type":"boolean"}},{"name":"showHidden","in":"query","description":"Hidden folders are not included in the listing by default.","required":false,"schema":{"type":"boolean"}},{"name":"counters","in":"query","description":"Should the response include counters (total + unseen). Counters come with some overhead.","required":false,"schema":{"type":"boolean"}},{"name":"sizes","in":"query","description":"Should the response include mailbox size in bytes. Size numbers come with a lot of overhead as an aggregated query is ran.","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"results":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Mailbox","required":true},"name":{"type":"string","description":"Name for the mailbox (unicode string)","required":true},"path":{"type":"string","description":"Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)","required":true},"specialUse":{"type":"string","description":"Either special use identifier or null. One of Drafts, Junk, Sent or Trash","required":true},"modifyIndex":{"type":"number","description":"Modification sequence number. Incremented on every change in the mailbox.","required":true},"subscribed":{"type":"boolean","description":"Mailbox subscription status. IMAP clients may unsubscribe from a folder.","required":true},"retention":{"type":"number","description":"Default retention policy for this mailbox (in ms). If set then messages added to this maibox will be automatically deleted after retention time.","required":false},"hidden":{"type":"boolean","description":"Is the folder hidden or not","required":true},"total":{"type":"number","description":"How many messages are stored in this mailbox","required":true},"unseen":{"type":"number","description":"How many unseen messages are stored in this mailbox","required":true},"size":{"type":"number","description":"Total size of mailbox in bytes.","required":false}},"required":["id","name","path","specialUse","modifyIndex","subscribed","hidden","total","unseen"]},"description":"List of user mailboxes"}},"required":["success","results"]}}}}}},"post":{"tags":["Mailboxes"],"summary":"Create new Mailbox","operationId":"postusersusermailboxes","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"path":{"type":"string","description":"Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)","required":true},"hidden":{"type":"boolean","description":"Is the folder hidden or not. Hidden folders can not be opened in IMAP.","required":false},"retention":{"type":"number","description":"Retention policy for the created Mailbox. Milliseconds after a message added to mailbox expires. Set to 0 to disable.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["path"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"ID of the Mailbox","required":true}},"required":["success","id"]}}}}}}},"/users/:user/mailboxes/:mailbox":{"get":{"tags":["Mailboxes"],"summary":"Request Mailbox information","operationId":"getusersusermailboxesmailbox","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"path","in":"query","description":"If mailbox is specified as `resolve` in the path then use this param as mailbox path instead of the given mailbox id.","required":false,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"ID of the Mailbox","required":true},"name":{"type":"string","description":"Name for the mailbox (unicode string)","required":true},"path":{"type":"string","description":"Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)","required":true},"specialUse":{"type":"string","description":"Either special use identifier or null. One of Drafts, Junk, Sent or Trash","required":true,"example":"\\Draft"},"modifyIndex":{"type":"number","description":"Modification sequence number. Incremented on every change in the mailbox.","required":true},"subscribed":{"type":"boolean","description":"Mailbox subscription status. IMAP clients may unsubscribe from a folder.","required":true},"hidden":{"type":"boolean","description":"Is the folder hidden or not","required":true},"total":{"type":"number","description":"How many messages are stored in this mailbox","required":true},"unseen":{"type":"number","description":"How many unseen messages are stored in this mailbox","required":true}},"required":["success","id","name","path","specialUse","modifyIndex","subscribed","hidden","total","unseen"]}}}}}},"put":{"tags":["Mailboxes"],"summary":"Update Mailbox information","operationId":"putusersusermailboxesmailbox","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"path":{"type":"string","description":"Full path of the mailbox, use this to rename an existing Mailbox","required":false},"retention":{"type":"number","description":"Retention policy for the Mailbox (in ms). Changing retention value only affects messages added to this folder after the change","required":false},"subscribed":{"type":"boolean","description":"Change Mailbox subscription state","required":false},"hidden":{"type":"boolean","description":"Is the folder hidden or not. Hidden folders can not be opened in IMAP.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}},"delete":{"tags":["Mailboxes"],"summary":"Delete a Mailbox","operationId":"deleteusersusermailboxesmailbox","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"user":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"mailbox":{"type":"string","description":"ID of the Mailbox","required":true}},"required":["user","mailbox"]}}},"required":true},"parameters":[{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}}},"/users/:user/mailboxes/:mailbox/messages":{"get":{"tags":["Messages"],"summary":"List messages in a Mailbox","description":"Lists all messages in a mailbox","operationId":"messages","parameters":[{"name":"user","in":"path","description":"ID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"unseen","in":"query","description":"If true, then returns only unseen messages","required":false,"schema":{"type":"boolean"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"threadCounters","in":"query","description":"If true, then includes threadMessageCount in the response. Counters come with some overhead","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"order","in":"query","description":"Ordering of the records by insert date","required":false,"schema":{"type":"any","enum":["asc","desc"]}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}},{"name":"includeHeaders","in":"query","description":"Comma separated list of header keys to include in the response","required":false,"schema":{"type":"alternatives"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"specialUse":{"type":"string","description":"Special use. If available","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetMessagesResult"},"description":"Message listing"}},"required":["success","total","page","previousCursor","nextCursor","specialUse","results"]}}}}}},"put":{"operationId":"putusersusermailboxesmailboxmessages","parameters":[],"responses":{}},"delete":{"operationId":"deleteusersusermailboxesmailboxmessages","parameters":[],"responses":{}},"post":{"tags":["Messages"],"summary":"Upload Message","description":"This method allows to upload either an RFC822 formatted message or a message structure to a mailbox. Raw message is stored unmodified, no headers are added or removed. If you want to generate the uploaded message from structured data fields, then do not use the raw property.","operationId":"postusersusermailboxesmailboxmessages","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"date":{"type":"string","required":false,"format":"date-time"},"unseen":{"type":"boolean","description":"Is the message unseen or not","required":false},"flagged":{"type":"boolean","description":"Is the message flagged or not","required":false},"draft":{"type":"boolean","description":"Is the message a draft or not","required":false},"raw":{"type":"string","description":"base64 encoded message source. Alternatively, you can provide this value as POST body by using message/rfc822 MIME type. If raw message is provided then it overrides any other mail configuration","required":false,"format":"binary"},"from":{"$ref":"#/components/schemas/AddressOptionalName"},"replyTo":{"$ref":"#/components/schemas/AddressOptionalName"},"to":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the To: header"},"cc":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the Cc: header"},"bcc":{"type":"array","items":{"$ref":"#/components/schemas/AddressOptionalName"},"description":"Addresses for the Bcc: header"},"headers":{"type":"array","items":{"$ref":"#/components/schemas/Header"},"description":"Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically"},"subject":{"type":"string","description":"Message subject. If not then resolved from Reference message","required":false},"text":{"type":"string","description":"Plaintext message","required":false},"html":{"type":"string","description":"HTML formatted message","required":false},"files":{"type":"array","items":{"type":"string","required":false},"description":"Attachments as storage file IDs. NB! When retrieving message info then an array of objects is returned. When uploading a message then an array of IDs is used."},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/Attachment"},"description":"Attachments for the message"},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"reference":{"$ref":"#/components/schemas/ReferenceWithAttachments"},"replacePrevious":{"type":"object","description":"If set, then deletes a previous message when storing the new one. Useful when uploading a new Draft message.","properties":{"mailbox":{"type":"string","required":false},"id":{"type":"number","required":true}},"required":["id"]},"bimi":{"$ref":"#/components/schemas/Bimi"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":false},"message":{"type":"object","description":"Message information","properties":{"id":{"type":"number","required":false},"malbox":{"type":"string","required":false},"size":{"type":"number","required":false}},"required":[]},"previousDeleted":{"type":"boolean","description":"Set if replacing a previous message was requested","required":false}},"required":[]}}}}}}},"/users/:user/search":{"get":{"tags":["Messages"],"summary":"Search for messages","description":"This method allows searching for matching messages.","operationId":"search","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"q","in":"query","description":"Additional query string","required":false,"schema":{"type":"string"}},{"name":"mailbox","in":"query","description":"ID of the Mailbox","required":false,"schema":{"type":"string"}},{"name":"id","in":"query","description":"Message ID values, only applies when used in combination with `mailbox`. Either comma separated numbers (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*)","required":false,"schema":{"type":"string"}},{"name":"thread","in":"query","description":"Thread ID","required":false,"schema":{"type":"string"}},{"name":"or","in":"query","description":"At least onOne of the included terms must match","required":false,"schema":{"type":"object"}},{"name":"query","in":"query","description":"Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.","required":false,"schema":{"type":"string"}},{"name":"datestart","in":"query","description":"Datestring for the earliest message storing time","required":false,"schema":{"type":"date"}},{"name":"dateend","in":"query","description":"Datestring for the latest message storing time","required":false,"schema":{"type":"date"}},{"name":"from","in":"query","description":"Partial match for the From: header line","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","description":"Partial match for the To: and Cc: header lines","required":false,"schema":{"type":"string"}},{"name":"subject","in":"query","description":"Partial match for the Subject: header line","required":false,"schema":{"type":"string"}},{"name":"minSize","in":"query","description":"Minimal message size in bytes","required":false,"schema":{"type":"number"}},{"name":"maxSize","in":"query","description":"Maximal message size in bytes","required":false,"schema":{"type":"number"}},{"name":"attachments","in":"query","description":"If true, then matches only messages with attachments","required":false,"schema":{"type":"boolean"}},{"name":"flagged","in":"query","description":"If true, then matches only messages with \\Flagged flags","required":false,"schema":{"type":"boolean"}},{"name":"unseen","in":"query","description":"If true, then matches only messages without \\Seen flags","required":false,"schema":{"type":"boolean"}},{"name":"includeHeaders","in":"query","description":"Comma separated list of header keys to include in the response","required":false,"schema":{"type":"string","example":"List-ID, MIME-Version"}},{"name":"searchable","in":"query","description":"If true, then matches messages not in Junk or Trash","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}},{"name":"threadCounters","in":"query","description":"If true, then includes threadMessageCount in the response. Counters come with some overhead","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"order","in":"query","description":"Ordering of the records by insert date. If no order is supplied, results are sorted by heir mongoDB ObjectId.","required":false,"schema":{"type":"any","enum":["asc","desc"]}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"query":{"type":"string","required":true},"total":{"type":"number","required":true},"page":{"type":"number","required":true},"previousCursor":{"oneOf":[{"type":"boolean","required":false},{"type":"string","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"boolean","required":false},{"type":"string","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetDomainAliasesResult"},"description":"Aliases listing"}},"required":["success","query","total","page","previousCursor","nextCursor","results"]}}}}}},"post":{"tags":["Messages"],"summary":"Search and update messages","description":"This method allows applying an action to all matching messages. This is an async method so that it will return immediately. Actual modifications are run in the background.","operationId":"searchApply","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"q":{"type":"string","description":"Additional query string","required":false},"mailbox":{"type":"string","description":"ID of the Mailbox","required":false},"id":{"type":"string","description":"Message ID values, only applies when used in combination with `mailbox`. Either comma separated numbers (1,2,3) or colon separated range (3:15), or a range from UID to end (3:*)","required":false},"thread":{"type":"string","description":"Thread ID","required":false},"or":{"type":"object","description":"At least onOne of the included terms must match","properties":{"query":{"type":"string","description":"Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.","required":false},"from":{"type":"string","description":"Partial match for the From: header line","required":false},"to":{"type":"string","description":"Partial match for the To: and Cc: header lines","required":false},"subject":{"type":"string","description":"Partial match for the Subject: header line","required":false}},"required":[]},"query":{"type":"string","description":"Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.","required":false},"datestart":{"type":"string","description":"Datestring for the earliest message storing time","required":false,"format":"date-time"},"dateend":{"type":"string","description":"Datestring for the latest message storing time","required":false,"format":"date-time"},"from":{"type":"string","description":"Partial match for the From: header line","required":false},"to":{"type":"string","description":"Partial match for the To: and Cc: header lines","required":false},"subject":{"type":"string","description":"Partial match for the Subject: header line","required":false},"minSize":{"type":"number","description":"Minimal message size in bytes","required":false},"maxSize":{"type":"number","description":"Maximal message size in bytes","required":false},"attachments":{"type":"boolean","description":"If true, then matches only messages with attachments","required":false},"flagged":{"type":"boolean","description":"If true, then matches only messages with \\Flagged flags","required":false},"unseen":{"type":"boolean","description":"If true, then matches only messages without \\Seen flags","required":false},"includeHeaders":{"type":"string","description":"Comma separated list of header keys to include in the response","required":false,"example":"List-ID, MIME-Version"},"searchable":{"type":"boolean","description":"If true, then matches messages not in Junk or Trash","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false},"action":{"type":"object","description":"Define actions to take with matching messages","properties":{"moveTo":{"type":"string","description":"ID of the target Mailbox if you want to move messages","required":false},"seen":{"type":"boolean","description":"State of the \\Seen flag","required":false},"flagged":{"type":"boolean","description":"State of the \\Flagged flag","required":false}},"required":[]}},"required":["action"]}}},"required":true},"parameters":[{"name":"user","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates if the action succeeded or not","required":true},"scheduled":{"type":"string","description":"ID of the scheduled operation","required":true},"existing":{"type":"boolean","description":"Indicates if the scheduled operation already exists","required":true}},"required":["success","scheduled","existing"]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message":{"get":{"tags":["Messages"],"summary":"Request Message information","operationId":"message","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}},{"name":"replaceCidLinks","in":"query","description":"If true then replaces cid links","required":false,"schema":{"type":"boolean"}},{"name":"markAsSeen","in":"query","description":"If true then marks message as seen","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"number","description":"Message ID","required":true},"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"user":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"envelope":{"$ref":"#/components/schemas/Envelope"},"thread":{"type":"string","description":"ID of the Thread","required":true},"from":{"$ref":"#/components/schemas/Address"},"to":{"$ref":"#/components/schemas/Address"},"cc":{"$ref":"#/components/schemas/Address"},"bcc":{"$ref":"#/components/schemas/Address"},"subject":{"type":"string","description":"Message subject","required":true},"messageId":{"type":"string","description":"Message-ID header","required":true},"date":{"type":"string","description":"Date string from header","required":true,"format":"date-time"},"idate":{"type":"string","description":"Date string of receive time","required":false,"format":"date-time"},"list":{"$ref":"#/components/schemas/List"},"expires":{"type":"string","description":"Datestring, if set then indicates the time after this message is automatically deleted","required":false},"seen":{"type":"boolean","description":"Does this message have a \\Seen flag","required":true},"deleted":{"type":"boolean","description":"Does this message have a \\Deleted flag","required":true},"flagged":{"type":"boolean","description":"Does this message have a \\Flagged flag","required":true},"draft":{"type":"boolean","description":"Does this message have a \\Draft flag","required":true},"html":{"type":"array","items":{"type":"string","required":false},"description":"An array of HTML string. Every array element is from a separate mime node, usually you would just join these to a single string"},"text":{"type":"string","description":"Plaintext content of the message","required":false},"attachments":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","description":"Attachment ID","required":true},"hash":{"type":"string","description":"SHA-256 hash of the contents of the attachment","required":false},"filename":{"type":"string","description":"Filename of the attachment","required":true},"contentType":{"type":"string","description":"MIME type","required":true},"disposition":{"type":"string","description":"Attachment disposition","required":true},"transferEncoding":{"type":"string","description":"Which transfer encoding was used (actual content when fetching attachments is not encoded)","required":true},"related":{"type":"boolean","description":"Was this attachment found from a multipart/related node. This usually means that this is an embedded image","required":true},"sizeKb":{"type":"number","description":"Approximate size of the attachment in kilobytes","required":true}},"required":["id","filename","contentType","disposition","transferEncoding","related","sizeKb"]},"description":"Attachments for the message"},"verificationResults":{"type":"object","description":"Security verification info if message was received from MX. If this property is missing then do not automatically assume invalid TLS, SPF or DKIM.","properties":{"tls":{"$ref":"#/components/schemas/Tls"},"spf":{"type":"object","description":"Domain name (either MFROM or HELO) of verified SPF or false if no SPF match was found","properties":{},"required":[]},"dkim":{"type":"object","description":"Domain name of verified DKIM signature or false if no valid signature was found","properties":{},"required":[]}},"required":["tls","spf","dkim"]},"bimi":{"type":"object","description":"BIMI logo info. If logo validation failed in any way, then this property is not set","properties":{"certified":{"type":"boolean","description":"If true, then this logo is from a VMC file","required":false},"url":{"type":"string","description":"URL of the resource the logo was retrieved from","required":false},"image":{"type":"string","description":"Data URL for the SVG image","required":false}},"required":[]},"contentType":{"type":"object","description":"Parsed Content-Type header. Usually needed to identify encrypted messages and such","properties":{"value":{"type":"string","description":"MIME type of the message, eg. \"multipart/mixed","required":true},"params":{"type":"object","description":"An object with Content-Type params as key-value pairs","properties":{},"required":[]}},"required":["value","params"]},"metaData":{"type":"object","description":"Custom metadata object set for this message","properties":{},"required":[]},"references":{"type":"object","properties":{},"required":[]},"files":{"type":"object","description":"List of files added to this message as attachments. Applies to Drafts, normal messages do not have this property. Needed to prevent uploading the same attachment every time a draft is updated","properties":{},"required":[]},"outbound":{"type":"array","items":{"type":"object","properties":{},"required":[]},"description":"Outbound queue entries"},"forwardTargets":{"type":"object","properties":{},"required":[]},"reference":{"type":"object","description":"Referenced message info","properties":{},"required":[]},"answered":{"type":"boolean","required":true},"forwarded":{"type":"boolean","required":true}},"required":["success","id","mailbox","user","envelope","thread","from","subject","messageId","date","seen","deleted","flagged","draft","contentType","answered","forwarded"]}}}}}},"put":{"operationId":"putusersusermailboxesmailboxmessagesmessage","parameters":[],"responses":{}},"delete":{"operationId":"deleteusersusermailboxesmailboxmessagesmessage","parameters":[],"responses":{}}},"/users/:user/mailboxes/:mailbox/messages/:message/message.eml":{"get":{"tags":["Messages"],"summary":"Get Message source","description":"This method returns the full RFC822 formatted source of the stored message","operationId":"raw","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"message/rfc822":{"schema":{"type":"object","properties":{"success":{"type":"object","description":"Success","properties":{},"required":[]}},"required":[]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message/attachments/:attachment":{"get":{"tags":["Messages"],"summary":"Download Attachment","description":"This method returns attachment file contents in binary form","operationId":"attachment","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}},{"name":"attachment","in":"path","description":"ID of the Attachment","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/octet-stream":{"schema":{"type":"object","properties":{"success":{"type":"string","required":false,"format":"binary"}},"required":[]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message/forward":{"post":{"tags":["Messages"],"summary":"Forward stored Message","description":"This method allows either to re-forward a message to an original forward target or forward it to some other address. This is useful if a user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message.","operationId":"postusersusermailboxesmailboxmessagesmessageforward","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"target":{"type":"number","description":"Number of original forwarding target","required":false},"addresses":{"type":"array","items":{"type":"string","required":false},"description":"An array of additional forward targets"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":false},"queueId":{"type":"string","description":"Message ID in outbound queue","required":false},"forwarded":{"type":"array","items":{"$ref":"#/components/schemas/Forwarded"},"description":"Information about forwarding targets"}},"required":[]}}}}}}},"/users/:user/mailboxes/:mailbox/messages/:message/submit":{"post":{"tags":["Messages"],"summary":"Submit Draft for delivery","description":"This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder.","operationId":"postusersusermailboxesmailboxmessagesmessagesubmit","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"deleteFiles":{"type":"boolean","description":"If true then deletes attachment files listed in metaData.files array","required":false},"sendTime":{"type":"string","description":"Datestring for delivery if message should be sent some later time","required":false,"format":"date-time"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"mailbox","in":"path","description":"ID of the Mailbox","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"queueId":{"type":"string","description":"Message ID in outbound queue","required":true},"message":{"$ref":"#/components/schemas/Message"}},"required":["success","queueId"]}}}}}}},"/users/:user/outbound/:queueId":{"delete":{"operationId":"deleteusersuseroutboundqueueid","parameters":[],"responses":{}}},"/users/:user/archived/messages":{"get":{"tags":["Archive"],"summary":"List archived messages","description":"Archive contains all recently deleted messages besides Drafts etc.","operationId":"archived","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string"}},{"name":"order","in":"query","description":"Ordering of the records by insert date","required":false,"schema":{"type":"any","enum":["asc","desc"]}},{"name":"includeHeaders","in":"query","description":"Comma separated list of header keys to include in the response","required":false,"schema":{"type":"string","example":"List-ID, MIME-Version"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"specialUse":{"type":"string","description":"Special use. If available","required":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetMessagesResult"},"description":"Message listing"}},"required":["success","total","page","previousCursor","nextCursor","specialUse","results"]}}}}}}},"/users/:user/archived/restore":{"post":{"tags":["Archive"],"summary":"Restore archived messages","description":"Initiates a restore task to move archived messages of a date range back to the mailboxes the messages were deleted from. If target mailbox does not exist, then the messages are moved to INBOX.","operationId":"create_restore_task","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"start":{"type":"string","description":"Datestring","required":true,"format":"date-time"},"end":{"type":"string","description":"Datestring","required":true,"format":"date-time"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["start","end"]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"task":{"type":"string","description":"Task ID","required":true}},"required":["success","task"]}}}}}}},"/users/:user/archived/messages/:message/restore":{"post":{"tags":["Archive"],"summary":"Restore archived messages ","description":"Initiates a restore task to move archived messages of a date range back to the mailboxes the messages were deleted from. If target mailbox does not exist, then the messages are moved to INBOX.","operationId":"archived_restore","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"mailbox":{"type":"string","description":"ID of the target Mailbox. If not set then original mailbox is used.","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"message","in":"path","description":"Message ID","required":true,"schema":{"type":"number"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"mailbox":{"type":"string","description":"Maibox ID the message was moved to","required":true},"id":{"type":"number","description":"New ID for the Message","required":true}},"required":["success","mailbox","id"]}}}}}}},"/users/:user/storage":{"post":{"operationId":"postusersuserstorage","parameters":[],"responses":{}},"get":{"operationId":"getusersuserstorage","parameters":[],"responses":{}}},"/users/:user/storage/:file":{"delete":{"operationId":"deleteusersuserstoragefile","parameters":[],"responses":{}},"get":{"operationId":"storagefile","parameters":[],"responses":{}}},"/filters":{"get":{"tags":["Filters"],"summary":"List all Filters","operationId":"filters","parameters":[{"name":"forward","in":"query","description":"Partial match of a forward email address or URL","required":false,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument.","required":true},"previousCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any previous results"},"nextCursor":{"oneOf":[{"type":"string","required":false},{"type":"boolean","required":false}],"description":"Either a cursor string or false if there are not any next results"},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetAllFiltersResult"},"description":"Address listing"}},"required":["success","total","page","previousCursor","nextCursor","results"]}}}}}}},"/users/:user/filters":{"get":{"tags":["Filters"],"summary":"List Filters for a User","operationId":"getusersuserfilters","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"metaData","in":"query","description":"If true, then includes metaData in the response","required":false,"schema":{"type":"boolean"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"limits":{"type":"object","description":"Filter usage limits for the user account","properties":{"allowed":{"type":"number","description":"How many filters are allowed","required":false},"used":{"type":"number","description":"How many filters have been created","required":false}},"required":[]},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetFiltersResult"},"description":"Filter description"}},"required":["success","limits","results"]}}}}}},"post":{"tags":["Filters"],"summary":"Create a new Filter","operationId":"postusersuserfilters","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the Filter","required":false},"query":{"$ref":"#/components/schemas/Query"},"action":{"$ref":"#/components/schemas/Action"},"disabled":{"type":"boolean","description":"If true then this filter is ignored","required":false},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"ID for the created filter","required":true}},"required":["success","id"]}}}}}}},"/users/:user/filters/:filter":{"get":{"tags":["Filters"],"summary":"Request Filter information","operationId":"getusersuserfiltersfilter","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"filter","in":"path","description":"Filters unique ID","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"Filters unique ID","required":true},"name":{"type":"string","description":"Name for the filter","required":true},"created":{"type":"string","description":"Datestring of the time the filter was created","required":true,"format":"date-time"},"query":{"$ref":"#/components/schemas/Query"},"action":{"$ref":"#/components/schemas/Action"},"disabled":{"type":"boolean","description":"If true, then this filter is ignored","required":true},"metaData":{"type":"object","description":"Custom metadata value","properties":{},"required":[]}},"required":["success","id","name","created","query","action","disabled"]}}}}}},"delete":{"tags":["Filters"],"summary":"Delete a Filter","operationId":"deleteusersuserfiltersfilter","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"filter","in":"path","description":"Filters unique ID","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}},"put":{"tags":["Filters"],"summary":"Update Filter information","operationId":"putusersuserfiltersfilter","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","description":"Name of the Filter","required":false},"query":{"$ref":"#/components/schemas/Query"},"action":{"$ref":"#/components/schemas/Action"},"disabled":{"type":"boolean","description":"If true then this filter is ignored","required":false},"metaData":{"type":"object","description":"Optional metadata, must be an object or JSON formatted string","required":false,"format":"any"},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"filter","in":"path","description":"Filters unique ID","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}}},"/domainaccess/:tag/:action":{"post":{"operationId":"postdomainaccesstagaction","parameters":[],"responses":{}},"get":{"operationId":"getdomainaccesstagaction","parameters":[],"responses":{}}},"/domainaccess/:domain":{"delete":{"operationId":"deletedomainaccessdomain","parameters":[],"responses":{}}},"/users/:user/asps":{"get":{"operationId":"getusersuserasps","parameters":[],"responses":{}},"post":{"operationId":"postusersuserasps","parameters":[],"responses":{}}},"/users/:user/asps/:asp":{"get":{"operationId":"getusersuseraspsasp","parameters":[],"responses":{}},"delete":{"operationId":"deleteusersuseraspsasp","parameters":[],"responses":{}}},"/users/:user/2fa/totp/setup":{"post":{"operationId":"postusersuser2fatotpsetup","parameters":[],"responses":{}}},"/users/:user/2fa/totp/enable":{"post":{"operationId":"postusersuser2fatotpenable","parameters":[],"responses":{}}},"/users/:user/2fa/totp":{"delete":{"operationId":"deleteusersuser2fatotp","parameters":[],"responses":{}}},"/users/:user/2fa/totp/check":{"post":{"operationId":"postusersuser2fatotpcheck","parameters":[],"responses":{}}},"/users/:user/2fa":{"delete":{"operationId":"deleteusersuser2fa","parameters":[],"responses":{}}},"/users/:user/2fa/custom":{"put":{"operationId":"putusersuser2facustom","parameters":[],"responses":{}},"delete":{"operationId":"deleteusersuser2facustom","parameters":[],"responses":{}}},"/users/:user/2fa/webauthn/credentials":{"get":{"operationId":"getusersuser2fawebauthncredentials","parameters":[],"responses":{}}},"/users/:user/2fa/webauthn/credentials/:credential":{"delete":{"operationId":"deleteusersuser2fawebauthncredentialscredential","parameters":[],"responses":{}}},"/users/:user/2fa/webauthn/registration-challenge":{"post":{"operationId":"postusersuser2fawebauthnregistrationchallenge","parameters":[],"responses":{}}},"/users/:user/2fa/webauthn/registration-attestation":{"post":{"operationId":"postusersuser2fawebauthnregistrationattestation","parameters":[],"responses":{}}},"/users/:user/2fa/webauthn/authentication-challenge":{"post":{"operationId":"postusersuser2fawebauthnauthenticationchallenge","parameters":[],"responses":{}}},"/users/:user/2fa/webauthn/authentication-assertion":{"post":{"operationId":"postusersuser2fawebauthnauthenticationassertion","parameters":[],"responses":{}}},"/users/:user/updates":{"get":{"operationId":"getusersuserupdates","parameters":[],"responses":{}}},"/preauth":{"post":{"tags":["Authentication"],"summary":"Pre-auth check","description":"Check if an username exists and can be used for authentication","operationId":"postpreauth","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"oneOf":[{"type":"string","required":false},{"type":"string","required":false}],"description":"Username or E-mail address"},"scope":{"type":"string","description":"Required scope. One of master, imap, smtp, pop3","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["username"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"username":{"type":"string","description":"Username of authenticated User","required":true},"scope":{"type":"string","description":"The scope this authentication is valid for","required":true},"require2fa":{"type":"array","items":{"type":"string","required":false},"description":"List of enabled 2FA mechanisms"}},"required":["success","id","username","scope","require2fa"]}}}}}}},"/authenticate":{"post":{"tags":["Authentication"],"summary":"Authenticate a User","operationId":"postauthenticate","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"oneOf":[{"type":"string","required":false},{"type":"string","required":false}],"description":"Username or E-mail address"},"password":{"type":"string","description":"Password","required":true},"protocol":{"type":"string","description":"Application identifier for security logs","required":false},"scope":{"type":"string","description":"Required scope. One of master, imap, smtp, pop3","required":false},"appId":{"type":"string","description":"Optional appId which is the URL of the app","required":false},"token":{"type":"boolean","description":"If true then generates a temporary access token that is valid for this user. Only available if scope is \"master\". When using user tokens then you can replace user ID in URLs with \"me\".","required":false},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":["username","password"]}}},"required":true},"parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true},"username":{"type":"string","description":"Username of authenticated User","required":true},"scope":{"type":"string","description":"The scope this authentication is valid for","required":true},"require2fa":{"type":"array","items":{"type":"string","required":false},"description":"List of enabled 2FA mechanisms"},"requirePasswordChange":{"type":"boolean","description":"Indicates if account hassword has been reset and should be replaced","required":true},"token":{"type":"string","description":"If access token was requested then this is the value to use as access token when making API requests on behalf of logged in user.","required":false}},"required":["success","id","username","scope","require2fa","requirePasswordChange"]}}}}}},"delete":{"tags":["Authentication"],"summary":"Invalidate authentication token","description":"This method invalidates currently used authentication token. If token is not provided then nothing happens","operationId":"deleteauthenticate","parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}}}}},"/users/:user/authlog":{"get":{"tags":["Authentication"],"summary":"List authentication Events","operationId":"authlog","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"action","in":"query","description":"Limit listing only to values with specific action value","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"How many records to return","required":false,"schema":{"type":"number"}},{"name":"next","in":"query","description":"Cursor value for next page, retrieved from nextCursor response value","required":false,"schema":{"type":"string"}},{"name":"previous","in":"query","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false,"schema":{"type":"string"}},{"name":"page","in":"query","description":"Current page number. Informational only, page numbers start from 1","required":false,"schema":{"type":"number"}},{"name":"filterip","in":"query","description":"Limit listing only to values with specific IP address","required":false,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"action":{"type":"string","description":"Limit listing only to values with specific action value","required":true},"total":{"type":"number","description":"How many results were found","required":true},"page":{"type":"number","description":"Current page number. Derived from page query argument","required":true},"previousCursor":{"type":"string","description":"Cursor value for previous page, retrieved from previousCursor response value","required":false},"nextCursor":{"type":"string","description":"Cursor value for next page, retrieved from nextCursor response value","required":false},"results":{"type":"array","items":{"$ref":"#/components/schemas/GetAuthlogResult"}}},"required":["success","action","total","page","results"]}}}}}}},"/users/:user/authlog/:event":{"get":{"tags":["Authentication"],"summary":"Request Event information","operationId":"getusersuserauthlogevent","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"event","in":"path","description":"ID of the Event","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"ID of the event","required":true},"action":{"type":"string","description":"Action identifier","required":true},"result":{"type":"string","description":"Did the action succeed","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false},"created":{"type":"string","description":"Datestring of the Event time","required":true,"format":"date-time"},"protocol":{"type":"string","description":"Protocol that the authentication was made from","required":false},"requiredScope":{"type":"string","description":"Scope of the auth","required":false},"last":{"type":"string","description":"Date of the last update of Event","required":true,"format":"date-time"},"events":{"type":"number","description":"Number of times same auth Event has accured","required":true},"source":{"type":"string","description":"Source of auth. Example: `master` if password auth was used","required":false},"expires":{"type":"string","description":"After this date the given auth Event will not be updated and instead a new one will be created","required":true,"format":"date-time"}},"required":["id","action","result","created","last","events","expires"]}}}}}}},"/users/:user/autoreply":{"put":{"tags":["Autoreplies"],"summary":"Update Autoreply information","operationId":"putusersuserautoreply","requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"boolean","description":"Is the autoreply enabled (true) or not (false)","required":false},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":false,"enum":[""]},"subject":{"type":"string","description":"Subject line for the autoreply. If empty then uses subject of the original message","required":false,"enum":[""]},"text":{"type":"string","description":"Plaintext formatted content of the autoreply message","required":false,"enum":[""]},"html":{"type":"string","description":"HTML formatted content of the autoreply message","required":false,"enum":[""]},"start":{"type":"string","description":"Datestring of the start of the autoreply or boolean false to disable start checks","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"Datestring of the end of the autoreply or boolean false to disable end checks","required":false,"format":"date-time","enum":[false]},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false}},"required":[]}}},"required":true},"parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"id":{"type":"string","description":"Autoreply ID","required":true}},"required":["success","id"]}}}}}},"get":{"tags":["Autoreplies"],"summary":"Request Autoreply information","operationId":"getusersuserautoreply","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"status":{"type":"boolean","description":"Is the autoreply enabled (true) or not (false)","required":false},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":false,"enum":[""]},"subject":{"type":"string","description":"Subject line for the autoreply. If empty then uses subject of the original message","required":false,"enum":[""]},"text":{"type":"string","description":"Plaintext formatted content of the autoreply message","required":false,"enum":[""]},"html":{"type":"string","description":"HTML formatted content of the autoreply message","required":false,"enum":[""]},"start":{"type":"string","description":"Datestring of the start of the autoreply or boolean false to disable start checks","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"Datestring of the end of the autoreply or boolean false to disable end checks","required":false,"format":"date-time","enum":[false]}},"required":["success"]}}}}}},"delete":{"tags":["Autoreplies"],"summary":"Delete Autoreply information","operationId":"deleteusersuserautoreply","parameters":[{"name":"user","in":"path","description":"Example: `507f1f77bcf86cd799439011`\nID of the User","required":true,"schema":{"type":"string"}},{"name":"sess","in":"query","description":"Session identifier for the logs","required":false,"schema":{"type":"string"}},{"name":"ip","in":"query","description":"IP address for the logs ","required":false,"schema":{"type":"string"}}],"responses":{}}},"/users/:user/submit":{"post":{"operationId":"send","parameters":[],"responses":{}}},"/audit":{"post":{"operationId":"postaudit","parameters":[],"responses":{}}},"/audit/:audit":{"get":{"operationId":"getauditaudit","parameters":[],"responses":{}}},"/audit/:audit/export.mbox":{"get":{"operationId":"getauditauditexportmbox","parameters":[],"responses":{}}},"/domainaliases":{"get":{"operationId":"domainaliases","parameters":[],"responses":{}},"post":{"operationId":"postdomainaliases","parameters":[],"responses":{}}},"/domainaliases/resolve/:alias":{"get":{"operationId":"getdomainaliasesresolvealias","parameters":[],"responses":{}}},"/domainaliases/:alias":{"get":{"operationId":"getdomainaliasesalias","parameters":[],"responses":{}},"delete":{"operationId":"deletedomainaliasesalias","parameters":[],"responses":{}}},"/dkim":{"get":{"operationId":"dkim","parameters":[],"responses":{}},"post":{"operationId":"postdkim","parameters":[],"responses":{}}},"/dkim/resolve/:domain":{"get":{"operationId":"getdkimresolvedomain","parameters":[],"responses":{}}},"/dkim/:dkim":{"get":{"operationId":"getdkimdkim","parameters":[],"responses":{}},"delete":{"operationId":"deletedkimdkim","parameters":[],"responses":{}}},"/certs":{"get":{"operationId":"cert","parameters":[],"responses":{}},"post":{"operationId":"postcerts","parameters":[],"responses":{}}},"/certs/resolve/:servername":{"get":{"operationId":"getcertsresolveservername","parameters":[],"responses":{}}},"/certs/:cert":{"get":{"operationId":"getcertscert","parameters":[],"responses":{}}},"/certs/:certs":{"delete":{"operationId":"deletecertscerts","parameters":[],"responses":{}}},"/webhooks":{"get":{"operationId":"webhooks","parameters":[],"responses":{}},"post":{"operationId":"postwebhooks","parameters":[],"responses":{}}},"/webhooks/:webhook":{"delete":{"operationId":"deletewebhookswebhook","parameters":[],"responses":{}}},"/settings":{"get":{"operationId":"settings","parameters":[],"responses":{}}},"/settings/:key":{"post":{"operationId":"postsettingskey","parameters":[],"responses":{}},"get":{"operationId":"getsettingskey","parameters":[],"responses":{}}},"/health":{"get":{"tags":["Health"],"summary":"Check the health of the API","description":"Check the status of the WildDuck API service, that is if db is connected and readable/writable, same for redis.","operationId":"gethealth","parameters":[],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true}},"required":["success"]}}}},"500":{"description":"Failed","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Indicates successful response","required":true},"message":{"type":"string","description":"Error message specifying what went wrong","required":true}},"required":["success","message"]}}}}}}},"/api-methods":{"get":{"operationId":"api-methods","parameters":[],"responses":{}}}},"components":{"schemas":{"Quota":{"type":"object","description":"Quota usage limits","properties":{"allowed":{"type":"number","description":"Allowed quota of the user in bytes","required":true},"used":{"type":"number","description":"Space used in bytes","required":true}},"required":["allowed","used"]},"GetUsersResult":{"type":"object","properties":{"id":{"type":"string","description":"Users unique ID (24byte hex)","required":true},"username":{"type":"string","description":"Username of the User","required":true},"name":{"type":"string","description":"Name of the User","required":true},"address":{"type":"string","description":"Main email address of the User","required":true},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the User"},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"},"enabled2fa":{"type":"array","items":{"type":"string","required":false},"description":"List of enabled 2FA methods"},"autoreply":{"type":"boolean","description":"Is autoreply enabled or not (start time may still be in the future or end time in the past)","required":true},"encryptMessages":{"type":"boolean","description":"If true then received messages are encrypted","required":true},"encryptForwarded":{"type":"boolean","description":"If true then forwarded messages are encrypted","required":true},"quota":{"$ref":"#/components/schemas/Quota"},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]},"internalData":{"type":"object","description":"Custom metadata value for internal use. Included if internalData query argument was true and request was not made using user-role token","properties":{},"required":[]},"hasPasswordSet":{"type":"boolean","description":"If true then the User has a password set and can authenticate","required":true},"activated":{"type":"boolean","description":"Is the account activated","required":true},"disabled":{"type":"boolean","description":"If true then user can not authenticate or receive any new mail","required":true},"suspended":{"type":"boolean","description":"If true then user can not authenticate","required":true}},"required":["id","username","name","address","tags","targets","enabled2fa","autoreply","encryptMessages","encryptForwarded","hasPasswordSet","activated","disabled","suspended"]},"Mailboxes":{"type":"object","description":"Optional names for special mailboxes","properties":{"sent":{"type":"string","required":false},"trash":{"type":"string","required":false},"junk":{"type":"string","required":false},"drafts":{"type":"string","required":false}},"required":[]},"GetAddressesResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"address":{"type":"string","description":"E-mail address string","required":true},"user":{"type":"string","description":"User ID this address belongs to if this is a User address","required":true},"forwarded":{"type":"boolean","description":"If true then it is a forwarded address","required":true},"forwardedDisabled":{"type":"boolean","description":"If true then the forwarded address is disabled","required":true},"target":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"}},"required":["id","name","address","user","forwarded","forwardedDisabled"]},"GetUserAddressesResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Identity name","required":true},"address":{"type":"string","description":"E-mail Address","required":true},"main":{"type":"boolean","description":"Indicates if this is the default address for the User","required":true},"created":{"type":"string","description":"Datestring of the time the address was created","required":true,"format":"date-time"},"tags":{"type":"array","items":{"type":"string","required":false},"description":"List of tags associated with the Address"},"metaData":{"type":"object","description":"Metadata object (if available)","properties":{},"required":[]},"internalData":{"type":"object","description":"Internal metadata object (if available), not included for user-role requests","properties":{},"required":[]}},"required":["id","name","address","main","created","tags"]},"GetUserAddressesregisterResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Address","required":true},"name":{"type":"string","description":"Name from address header","required":false},"address":{"type":"string","description":"E-mail Address","required":true}},"required":["id","address"]},"Autoreply":{"type":"object","description":"Autoreply information","properties":{"status":{"type":"boolean","description":"If true, then autoreply is enabled for this address","required":false},"start":{"type":"string","description":"Either a date string or boolean false to disable start time checks","required":false,"format":"date-time","enum":[false]},"end":{"type":"string","description":"Either a date string or boolean false to disable end time checks","required":false,"format":"date-time","enum":[false]},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":false},"subject":{"type":"string","description":"Autoreply subject line","required":false},"text":{"type":"string","description":"Autoreply plaintext content","required":false},"html":{"type":"string","description":"Autoreply HTML content","required":false}},"required":[]},"Forwards":{"type":"object","description":"Forwarding quota","properties":{"allowed":{"type":"number","description":"How many messages per 24 hours can be forwarded","required":true},"used":{"type":"number","description":"How many messages are forwarded during current 24 hour period","required":true},"ttl":{"type":"number","description":"Time until the end of current 24 hour period","required":true}},"required":["allowed","used","ttl"]},"AddressLimits":{"type":"object","description":"Account limits and usage","properties":{"forwards":{"$ref":"#/components/schemas/Forwards"}},"required":["forwards"]},"AutoreplyInfo":{"type":"object","description":"Autoreply information","properties":{"status":{"type":"boolean","description":"If true, then autoreply is enabled for this address","required":true},"name":{"type":"string","description":"Name that is used for the From: header in autoreply message","required":true},"subject":{"type":"string","description":"Autoreply subject line","required":true},"text":{"type":"string","description":"Autoreply plaintext content","required":true},"html":{"type":"string","description":"Autoreply HTML content","required":true}},"required":["status","name","subject","text","html"]},"Address":{"type":"object","properties":{"name":{"type":"string","description":"Name of the sender/recipient","required":true},"address":{"type":"string","description":"Address of the sender/recipient","required":true}},"required":["name","address"]},"ReferenceWithAttachments":{"type":"object","properties":{"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"id":{"type":"number","description":"Message ID","required":true},"action":{"type":"string","description":"Either reply, replyAll or forward","required":true,"enum":["reply","replyAll","forward"]},"attachments":{"oneOf":[{"type":"boolean","required":false},{"type":"array","items":{"type":"string","required":false}}],"description":"If true, then includes all attachments from the original message. If it is an array of attachment ID's includes attachments from the list"}},"required":["mailbox","id","action"]},"Bimi":{"type":"object","description":"Marks BIMI verification as passed for a domain. NB! BIMI record and logo files for the domain must be valid.","properties":{"domain":{"type":"string","description":"Domain name for the BIMI record. It does not have to be the same as the From address.","required":true},"selector":{"type":"string","description":"Optional BIMI selector","required":false}},"required":["domain"]},"ContentType":{"type":"object","description":"Parsed Content-Type header. Usually needed to identify encrypted messages and such","properties":{"value":{"type":"string","description":"MIME type of the message, eg. \"multipart/mixed\"","required":true},"params":{"type":"object","description":"An object with Content-Type params as key-value pairs","properties":{},"required":[]}},"required":["value","params"]},"GetMessagesResult":{"type":"object","properties":{"id":{"type":"number","description":"ID of the Message","required":true},"mailbox":{"type":"string","description":"ID of the Mailbox","required":true},"thread":{"type":"string","description":"ID of the Thread","required":true},"threadMessageCount":{"type":"number","description":"Amount of messages in the Thread. Included if threadCounters query argument was true","required":false},"from":{"$ref":"#/components/schemas/Address"},"to":{"type":"array","items":{"$ref":"#/components/schemas/Address"},"description":"Recipients in To: field"},"cc":{"type":"array","items":{"$ref":"#/components/schemas/Address"},"description":"Recipients in Cc: field"},"bcc":{"type":"array","items":{"$ref":"#/components/schemas/Address"},"description":"Recipients in Bcc: field. Usually only available for drafts"},"messageId":{"type":"string","description":"Message ID","required":true},"subject":{"type":"string","description":"Message subject","required":true},"date":{"type":"string","description":"Date string from header","required":true,"format":"date-time"},"idate":{"type":"string","description":"Date string of receive time","required":false,"format":"date-time"},"intro":{"type":"string","description":"First 128 bytes of the message","required":true},"attachments":{"type":"boolean","description":"Does the message have attachments","required":true},"size":{"type":"number","description":"Message size in bytes","required":true},"seen":{"type":"boolean","description":"Is this message alread seen or not","required":true},"deleted":{"type":"boolean","description":"Does this message have a Deleted flag (should not have as messages are automatically deleted once this flag is set)","required":true},"flagged":{"type":"boolean","description":"Does this message have a Flagged flag","required":true},"draft":{"type":"boolean","description":"is this message a draft","required":true},"answered":{"type":"boolean","description":"Does this message have a Answered flag","required":true},"forwarded":{"type":"boolean","description":"Does this message have a $Forwarded flag","required":true},"references":{"type":"array","items":{"$ref":"#/components/schemas/ReferenceWithAttachments"},"description":"References"},"bimi":{"$ref":"#/components/schemas/Bimi"},"contentType":{"$ref":"#/components/schemas/ContentType"},"encrypted":{"type":"boolean","description":"Specifies whether the message is encrypted","required":false},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]},"headers":{"type":"object","description":"Header object keys requested with the includeHeaders argument","properties":{},"required":[]}},"required":["id","mailbox","thread","to","cc","bcc","messageId","subject","date","intro","attachments","size","seen","deleted","flagged","draft","answered","forwarded","references","bimi","contentType"]},"AddressOptionalName":{"type":"object","properties":{"name":{"type":"string","description":"Name of the sender","required":false},"address":{"type":"string","description":"Address of the sender","required":true}},"required":["address"]},"Header":{"type":"object","properties":{"key":{"type":"string","description":"Header key ('X-Mailer')","required":false},"value":{"type":"string","description":"Header value ('My Awesome Mailing Service')","required":false}},"required":[]},"Attachment":{"type":"object","properties":{"filename":{"type":"string","description":"Attachment filename","required":false},"contentType":{"type":"string","description":"MIME type for the attachment file","required":false},"encoding":{"type":"string","description":"Encoding to use to store the attachments","required":false},"contentTransferEncoding":{"type":"string","description":"Transfer encoding","required":false},"content":{"type":"string","description":"Base64 encoded attachment content","required":true},"cid":{"type":"string","description":"Content-ID value if you want to reference to this attachment from HTML formatted message","required":false}},"required":["content"]},"GetDomainAliasesResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the Domain Alias","required":true},"alias":{"type":"string","description":"Domain Alias","required":true},"domain":{"type":"string","description":"The domain this alias applies to","required":true}},"required":["id","alias","domain"]},"Rcpt":{"type":"object","properties":{"value":{"type":"string","description":"RCPT TO address as provided by SMTP client","required":true},"formatted":{"type":"string","description":"Normalized RCPT address","required":true}},"required":["value","formatted"]},"Envelope":{"type":"object","description":"SMTP envelope (if available)","properties":{"from":{"type":"string","description":"Address from MAIL FROM","required":true},"rcpt":{"type":"array","items":{"$ref":"#/components/schemas/Rcpt"},"description":"Array of addresses from RCPT TO (should have just one normally)"}},"required":["from"]},"List":{"type":"object","description":"If set then this message is from a mailing list","properties":{"id":{"type":"string","description":"Value from List-ID header","required":true},"unsubscribe":{"type":"string","description":"Value from List-Unsubscribe header","required":true}},"required":["id","unsubscribe"]},"Tls":{"type":"object","description":"TLS information. Value is false if TLS was not used","properties":{"name":{"type":"object","description":"Cipher name, eg \"ECDHE-RSA-AES128-GCM-SHA256\"","properties":{},"required":[]},"version":{"type":"object","description":"TLS version, eg \"TLSv1/SSLv3\"","properties":{},"required":[]}},"required":["name","version"]},"Forwarded":{"type":"object","properties":{"seq":{"type":"string","required":false},"type":{"type":"string","required":false},"value":{"type":"string","required":false}},"required":[]},"Message":{"type":"object","description":"Message information","properties":{"id":{"type":"number","description":"Message ID in mailbox","required":true},"mailbox":{"type":"string","description":"Mailbox ID the message was stored into","required":true},"size":{"type":"number","description":"Size of the RFC822 formatted email","required":false}},"required":["id","mailbox"]},"GetAllFiltersResult":{"type":"object","properties":{"id":{"type":"string","description":"Filter ID","required":true},"user":{"type":"string","description":"User ID","required":true},"name":{"type":"string","description":"Name for the filter","required":true},"created":{"type":"string","description":"Datestring of the time the filter was created","required":true,"format":"date-time"},"query":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter query strings"},"action":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter action strings"},"disabled":{"type":"boolean","description":"If true, then this filter is ignored","required":true},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]},"targets":{"type":"array","items":{"type":"string","required":false},"description":"List of forwarding targets"}},"required":["id","user","name","created","query","action","disabled"]},"GetFiltersResult":{"type":"object","properties":{"id":{"type":"string","description":"Filter ID","required":true},"name":{"type":"string","description":"Name for the filter","required":true},"created":{"type":"string","description":"Datestring of the time the filter was created","required":true,"format":"date-time"},"query":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter query strings"},"action":{"type":"array","items":{"type":"array","items":{"type":"string","required":false}},"description":"Filter action strings"},"disabled":{"type":"boolean","description":"If true, then this filter is ignored","required":true},"metaData":{"type":"object","description":"Custom metadata value. Included if metaData query argument was true","properties":{},"required":[]}},"required":["id","name","created","query","action","disabled"]},"Query":{"type":"object","description":"Rules that a message must match","properties":{"from":{"type":"string","description":"Partial match for the From: header (case insensitive)","required":false},"to":{"type":"string","description":"Partial match for the To:/Cc: headers (case insensitive)","required":false},"subject":{"type":"string","description":"Partial match for the Subject: header (case insensitive)","required":false},"listId":{"type":"string","description":"Partial match for the List-ID: header (case insensitive)","required":false},"text":{"type":"string","description":"Fulltext search against message text","required":false},"ha":{"type":"boolean","description":"Does a message have to have an attachment or not","required":false},"size":{"type":"number","description":"Message size in bytes. If the value is a positive number then message needs to be larger, if negative then message needs to be smaller than abs(size) value","required":false}},"required":[]},"Action":{"type":"object","description":"Action to take with a matching message","properties":{"seen":{"type":"boolean","description":"If true then mark matching messages as Seen","required":false},"flag":{"type":"boolean","description":"If true then mark matching messages as Flagged","required":false},"delete":{"type":"boolean","description":"If true then do not store matching messages","required":false},"spam":{"type":"boolean","description":"If true then store matching messags to Junk Mail folder","required":false},"mailbox":{"type":"string","description":"Mailbox ID to store matching messages to","required":false},"targets":{"type":"array","items":{"type":"string","required":false},"description":"An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to"}},"required":[]},"GetAuthlogResult":{"type":"object","properties":{"id":{"type":"string","description":"ID of the event","required":true},"action":{"type":"string","description":"Action identifier","required":true},"result":{"type":"string","description":"Did the action succeed","required":true},"sess":{"type":"string","description":"Session identifier for the logs","required":false},"ip":{"type":"string","description":"IP address for the logs ","required":false},"created":{"type":"string","description":"Datestring of the Event time","required":true,"format":"date-time"},"protocol":{"type":"string","description":"Protocol that the authentication was made from","required":false},"requiredScope":{"type":"string","description":"Scope of the auth","required":false},"last":{"type":"string","description":"Date of the last update of data","required":true,"format":"date-time"},"events":{"type":"number","description":"Number of times same auth log has accured","required":true},"source":{"type":"string","description":"Source of auth. Example: `master` if password auth was used","required":false},"expires":{"type":"string","description":"After this date the given auth log document will not be updated and instead a new one will be created","required":true,"format":"date-time"}},"required":["id","action","result","created","last","events","expires"]}},"securitySchemes":{"AccessTokenAuth":{"name":"X-Access-Token","type":"apiKey","in":"header","description":"If authentication is enabled in the WildDuck configuration, you will need to supply an access token in the `X-Access-Token` header.\n```json\n{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}\n```\n"}}},"security":[{"AccessTokenAuth":[]}]} \ No newline at end of file diff --git a/test.txt b/test.txt deleted file mode 100644 index 44c67a81..00000000 --- a/test.txt +++ /dev/null @@ -1,2 +0,0 @@ -test file new for git -