diff --git a/README.md b/README.md index 887337a..3c4bf82 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ If you have a blank VPS and a free domain name that you can point to that VPS th Install script installs and configures all required dependencies and services, including Let's Encrypt based certs, to run WildDuck as a mail server. -Tested on a 10$ DigitalOcean Ubuntu 16.04 instance. +Tested on a 10\$ DigitalOcean Ubuntu 16.04 instance. ![](https://cldup.com/TZoTfxPugm.png) @@ -265,7 +265,7 @@ This is a list of known differences from the IMAP specification. Listed differen 5. `CHARSET` argument for the `SEARCH` command is ignored (RFC3501 6.4.4.) 6. Metadata arguments for `SEARCH MODSEQ` are ignored (RFC7162 3.1.5.). You can define `` and `` values but these are not used for anything -7. `SEARCH TEXT` and `SEARCH BODY` both use MongoDB [$text index](https://docs.mongodb.com/v3.4/reference/operator/query/text/) against decoded plaintext +7. `SEARCH TEXT` and `SEARCH BODY` both use MongoDB [\$text index](https://docs.mongodb.com/v3.4/reference/operator/query/text/) against decoded plaintext version of the message. RFC3501 assumes that it should be a string match either against full message (`TEXT`) or body section (`BODY`). 8. What happens when FETCH is called for messages that were deleted in another session? _Not sure, need to check_ 9. **Autoexpunge**, meaning that an EXPUNGE is called on background whenever a messages gets a `\Deleted` flag set. This is not in conflict with IMAP RFCs. @@ -343,6 +343,10 @@ sh.enableSharding('attachments'); // attachment _id is a sha256 hash of attachment contents sh.shardCollection('attachments.attachments.files', { _id: 'hashed' }); sh.shardCollection('attachments.attachments.chunks', { files_id: 'hashed' }); + +// storage _id is an ObjectID +sh.shardCollection('attachments.storage.files', { _id: 'hashed' }); +sh.shardCollection('attachments.storage.chunks', { files_id: 'hashed' }); ``` ### Disk usage diff --git a/api.js b/api.js index 6515514..7f77579 100644 --- a/api.js +++ b/api.js @@ -7,6 +7,7 @@ const logger = require('restify-logger'); const UserHandler = require('./lib/user-handler'); const MailboxHandler = require('./lib/mailbox-handler'); const MessageHandler = require('./lib/message-handler'); +const StorageHandler = require('./lib/storage-handler'); const ImapNotifier = require('./lib/imap-notifier'); const db = require('./lib/db'); const certs = require('./lib/certs'); @@ -20,6 +21,7 @@ const usersRoutes = require('./lib/api/users'); const addressesRoutes = require('./lib/api/addresses'); const mailboxesRoutes = require('./lib/api/mailboxes'); const messagesRoutes = require('./lib/api/messages'); +const storageRoutes = require('./lib/api/storage'); const filtersRoutes = require('./lib/api/filters'); const aspsRoutes = require('./lib/api/asps'); const totpRoutes = require('./lib/api/2fa/totp'); @@ -35,6 +37,7 @@ const dkimRoutes = require('./lib/api/dkim'); let userHandler; let mailboxHandler; let messageHandler; +let storageHandler; let notifier; let loggelf; @@ -371,6 +374,13 @@ module.exports = done => { loggelf: message => loggelf(message) }); + storageHandler = new StorageHandler({ + database: db.database, + users: db.users, + gridfs: db.gridfs, + loggelf: message => loggelf(message) + }); + userHandler = new UserHandler({ database: db.database, users: db.users, @@ -393,7 +403,8 @@ module.exports = done => { usersRoutes(db, server, userHandler); addressesRoutes(db, server); mailboxesRoutes(db, server, mailboxHandler); - messagesRoutes(db, server, messageHandler, userHandler); + messagesRoutes(db, server, messageHandler, userHandler, storageHandler); + storageRoutes(db, server, storageHandler); filtersRoutes(db, server); aspsRoutes(db, server, userHandler); totpRoutes(db, server, userHandler); diff --git a/config/roles.json b/config/roles.json index 7e781a0..04a86ac 100644 --- a/config/roles.json +++ b/config/roles.json @@ -40,6 +40,13 @@ "delete:any": ["*"] }, + "storage": { + "create:any": ["*"], + "read:any": ["*"], + "update:any": ["*"], + "delete:any": ["*"] + }, + "mailboxes": { "create:any": ["*"], "read:any": ["*"], @@ -170,6 +177,13 @@ "delete:any": ["*"] }, + "storage": { + "create:any": ["*"], + "read:any": ["*"], + "update:any": ["*"], + "delete:any": ["*"] + }, + "mailboxes": { "create:any": ["*"], "read:any": ["*"], @@ -230,6 +244,13 @@ "delete:own": ["*"] }, + "storage": { + "create:own": ["*"], + "read:own": ["*"], + "update:own": ["*"], + "delete:own": ["*"] + }, + "mailboxes": { "create:own": ["*"], "read:own": ["*"], diff --git a/docs/api_data.js b/docs/api_data.js index f48d31b..06a3912 100644 --- a/docs/api_data.js +++ b/docs/api_data.js @@ -1 +1 @@ -define({ "api": [ { "type": "delete", "url": "/addresses/forwarded/:address", "title": "Delete a forwarded Address", "name": "DeleteForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/addresses/:address", "title": "Delete an Address", "name": "DeleteUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Trying to delete main address. Set a new main address first\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/resolve/:address", "title": "Get Address info", "name": "GetAddressInfo", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address or e-mail address string

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the user if the address belongs to an User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets if this is a Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage for Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "User-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d771bb\"\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" }, { "title": "Forwarded-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"autoreply\": {\n \"status\": false\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/resolve/k%C3%A4ru%40j%C3%B5geva.ee", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses", "title": "List registered Addresses", "name": "GetAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of an address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The Address must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The Address must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.user", "description": "

User ID this address belongs to if this is an User address

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

If true then it is a forwarded address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d790e7a\"\n },\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"forwarded\": true\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/forwarded/:address", "title": "Request forwarded Addresses information", "name": "GetForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses/:address", "title": "Request Addresses information", "name": "GetUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses", "title": "List registered Addresses for an User", "name": "GetUserAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/addresses/forwarded", "title": "Create new forwarded Address", "name": "PostForwardedAddress", "group": "Addresses", "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)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This email address already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/addresses/forwarded \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\",\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"forwards\": 500\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/users/:user/addresses", "title": "Create new Address", "name": "PostUserAddress", "group": "Addresses", "description": "

Add a new email address for an 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 and username@* catches all emails to these domains or users without a registered destination (requires allowWildcard argument)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "main", "defaultValue": "false", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/addresses \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/forwarded/:address", "title": "Update forwarded Address information", "name": "PutForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/forwarded/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"targets\": [\n \"some.other.address@example.com\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/renameDomain", "title": "Rename domain in addresses", "name": "PutRenameDomain", "group": "Addresses", "description": "

Renames domain names for addresses, DKIM keys and Domain Aliases

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "oldDomain", "description": "

Old Domain Name

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "newDomain", "description": "

New Domain Name

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to rename domain\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/renameDomain \\\n-H 'Content-type: application/json' \\\n-d '{\n \"oldDomain\": \"example.com\",\n \"newDomain\": \"blurdybloop.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/users/:user/addresses/:address", "title": "Update Address information", "name": "PutUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address if you want to rename existing address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/addresses/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"main\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/asps/:asp", "title": "Delete an Application Password", "name": "DeleteASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps/:asp", "title": "Request ASP information", "name": "GetASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Specific Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps", "title": "List Application Passwords", "name": "GetASPs", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "showAll", "defaultValue": "false", "description": "

If not true then skips entries with a TTL set

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "post", "url": "/users/:user/asps", "title": "Create new Application Password", "name": "PostASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "scopes", "description": "

List of scopes this Password applies to. Special scope "*" indicates that this password can be used for any scope except "master"

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "generateMobileconfig", "description": "

If true then result contains a mobileconfig formatted file with account config

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "ttl", "description": "

TTL in seconds for this password. Every time password is used, TTL is reset to this value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "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"

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mobileconfig", "description": "

Base64 encoded mobileconfig file. Generated profile file should be sent to the client with Content-Type value of application/x-apple-aspen-config.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"password\": \"rflhmllyegblyybd\",\n \"mobileconfig\": \"MIIQBgYJKoZIhvcNAQcCoIIP9...\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/asps \\\n-H 'Content-type: application/json' \\\n-d '{\n \"description\": \"Thunderbird\",\n \"scopes\": [\"imap\", \"smtp\"],\n \"generateMobileconfig\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/archived/messages", "title": "List archived messages", "name": "GetArchivedMessages", "group": "Archive", "description": "

Archive contains all recently deleted messages besides Drafts etc.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Message (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a13e54454869460e58\",\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/messages/:message/restore", "title": "Restore archived Message", "name": "RestoreMessage", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the target Mailbox. If not set then original mailbox is used.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

Maibox ID the message was moved to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

New ID for the Message

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": 4\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages/59fc66a13e54454869460e58/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/restore", "title": "Restore archived messages", "name": "RestoreMessages", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "start", "description": "

Datestring

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "end", "description": "

Datestring

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"start\": \"2018-10-01T00:00:00.000Z\",\n \"end\": \"2018-10-08T23:59:59.999Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "get", "url": "/users/:user/authlog", "title": "List authentication Events", "name": "GetAuthlog", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action", "description": "

Limit listing only to values with specific action value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "filterIp", "description": "

Limit listing only to values with specific IP address

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"action\": \"account created\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog?action=account+created\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "get", "url": "/users/:user/authlog/:event", "title": "Request Event information", "name": "GetAuthlogEvent", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "event", "description": "

ID of the Event

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog/59fc66a03e54454869460e4d\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "post", "url": "/authenticate", "title": "Authenticate an User", "name": "PostAuth", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username or E-mail address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "protocol", "description": "

Application identifier for security logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "scope", "defaultValue": "master", "description": "

Required scope. One of master, imap, smtp, pop3

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "token", "defaultValue": "false", "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".

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "scope", "description": "

The scope this authentication is valid for

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "require2fa", "description": "

List of enabled 2FA mechanisms

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "requirePasswordChange", "description": "

Indicates if account hassword has been reset and should be replaced

" }, { "group": "Success 200", "type": "String", "optional": true, "field": "token", "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.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a12914c350c183bd0d331f0\",\n \"username\": \"myuser\",\n \"scope\": \"master\",\n \"require2fa\": [\n \"totp\"\n ],\n \"requirePasswordChange\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "optional": true, "field": "code", "description": "

Error code

" }, { "group": "Error 4xx", "optional": true, "field": "id", "description": "

User ID if the user exists

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Authentication failed. Invalid scope\",\n \"code\": \"InvalidAuthScope\",\n \"id\": \"5b22283d45e8d47572eb0381\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/authenticate \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"secretpass\",\n \"scope\": \"master\",\n \"token\": \"true\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "delete", "url": "/users/:user/autoreply", "title": "Delete Autoreply information", "name": "DeleteAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "get", "url": "/users/:user/autoreply", "title": "Request Autoreply information", "name": "GetAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "start", "description": "

Datestring of the start of the autoreply

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "end", "description": "

Datestring of the end of the autoreply

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"status\": true,\n \"subject\": \"\",\n \"text\": \"Away from office until Dec.19\",\n \"html\": \"\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "put", "url": "/users/:user/autoreply", "title": "Update Autoreply information", "name": "PutAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "start", "description": "

Datestring of the start of the autoreply or boolean false to disable start checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "end", "description": "

Datestring of the end of the autoreply or boolean false to disable end checks

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/autoreply \\\n-H 'Content-type: application/json' \\\n-d '{\n \"status\": true,\n \"text\": \"Away from office until Dec.19\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "delete", "url": "/dkim/:dkim", "title": "Delete a DKIM key", "name": "DeleteDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/dkim/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim", "title": "List registered DKIM keys", "name": "GetDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/:dkim", "title": "Request DKIM information", "name": "GetDkimKey", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "post", "url": "/dkim", "title": "Create or update DKIM key for domain", "name": "PostDkim", "group": "DKIM", "description": "

Add a new DKIM key for a Domain or update existing one. There can be single DKIM key registered for each domain name.

", "header": { "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "selector", "description": "

Selector for the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "description", "description": "

Key description

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "privateKey", "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.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/dkim \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"privateKey\": \"-----BEGIN RSA PRIVATE KEY-----...\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/resolve/:domain", "title": "Resolve ID for a DKIM domain", "name": "ResolveDKIM", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

DKIM domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

DKIM unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This domain does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "delete", "url": "/domainaliases/:alias", "title": "Delete an Alias", "name": "DeleteDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases", "title": "List registered Domain Aliases", "name": "GetAliases", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain Alias or Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.alias", "description": "

Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this alias applies to

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/:alias", "title": "Request Alias information", "name": "GetDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

Alias target

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the alias was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "post", "url": "/domainaliases", "title": "Create new Domain Alias", "name": "PostDomainAlias", "group": "DomainAliases", "description": "

Add a new Alias for a Domain. This allows to accept mail on username@domain and username@alias

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Domain Alias

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

Domain name this Alias applies to

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Domain Alias

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/domainaliases \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"alias\": \"example.org\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/resolve/:alias", "title": "Resolve ID for a domain aias", "name": "ResolveDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Alias unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "delete", "url": "/users/:user/filters/:filter", "title": "Delete a Filter", "name": "DeleteFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters/:filter", "title": "Request Filter information", "name": "GetFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the Filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the Filter

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "query.size", "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

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "action.targets", "description": "

A list of email addresses / HTTP URLs to forward the message to

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"created\": \"2017-11-27T13:11:00.835Z\",\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n },\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters", "title": "List Filters for an User", "name": "GetFilters", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Filter description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Filter ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the filter was created

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.query", "description": "

A list of query descriptions

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.action", "description": "

A list of action descriptions

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"query\": [\n [\n \"from\",\n \"(Mäger)\"\n ]\n ],\n \"action\": [\n [\n \"mark as read\"\n ]\n ],\n \"disabled\": false,\n \"created\": \"2017-11-27T13:11:00.835Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "post", "url": "/users/:user/filters", "title": "Create new Filter", "name": "PostFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters \\\n-H 'Content-type: application/json' \\\n-d '{\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "put", "url": "/users/:user/filters/:filter", "title": "Update Filter information", "name": "PutFilter", "group": "Filters", "description": "

This method updates Filter data. To unset a value, use empty strings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c \\\n-H 'Content-type: application/json' \\\n-d '{\n \"action\": {\n \"seen\": \"\",\n \"flag\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox", "title": "Delete a Mailbox", "name": "DeleteMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID. Special use folders and INBOX can not be deleted

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox deletion failed with code CANNOT\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox", "title": "Request Mailbox information", "name": "GetMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": " HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This mailbox does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes", "title": "List Mailboxes for an User", "name": "GetMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "specialUse", "defaultValue": "false", "description": "

Should the response include only folders with specialUse flag set.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "counters", "defaultValue": "false", "description": "

Should the response include counters (total + unseen). Counters come with some overhead.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "sizes", "defaultValue": "false", "description": "

Should the response include mailbox size in bytes. Size numbers come with a lot of overhead as an aggregated query is ran.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

List of user mailboxes

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n },\n {\n \"id\": \"59fc66a03e54454869460e47\",\n \"name\": \"Sent Mail\",\n \"path\": \"Sent Mail\",\n \"specialUse\": \"\\\\Sent\",\n \"modifyIndex\": 145,\n \"subscribed\": true,\n \"total\": 15,\n \"unseen\": 0\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?counters=true", "type": "curl" }, { "title": "Special Use Only", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?specialUse=true", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "post", "url": "/users/:user/mailboxes", "title": "Create new Mailbox", "name": "PostMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "defaultValue": "0", "description": "

Retention policy for the created Mailbox. Milliseconds after a message added to mailbox expires. Set to 0 to disable.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d2816153888cdcd62a715\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox creation failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"First Level/Second 😎 Level/Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox", "title": "Update Mailbox information", "name": "PutMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "path", "description": "

Full path of the mailbox, use this to rename an existing Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Retention policy for the Mailbox. Changing retention value only affects messages added to this folder after the change

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "subscribed", "description": "

Change Mailbox subscription state

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox update failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"Updated Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Delete a Message", "name": "DeleteMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Delete Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Delete a Message:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/2\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/forward", "title": "Forward stored Message", "name": "ForwardStoredMessage", "group": "Messages", "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 an user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "target", "description": "

Number of original forwarding target

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "addresses", "description": "

An array of additional forward targets

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "forwarded", "description": "

Information about forwarding targets

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.seq", "description": "

Sequence ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.type", "description": "

Target type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.value", "description": "

Target address

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"1600d2f36470008b72\",\n \"forwarded\": [\n {\n \"seq\": \"001\",\n \"type\": \"mail\",\n \"value\": \"andris@ethereal.email\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Forward a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/forward\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"addresses\": [\n \"andris@ethereal.email\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Request Message information", "name": "GetMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "markAsSeen", "defaultValue": "false", "description": "

If true then marks message as seen

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "envelope", "description": "

SMTP envelope (if available)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.from", "description": "

Address from MAIL FROM

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "envelope.rcpt", "description": "

Array of addresses from RCPT TO (should have just one normally)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.value", "description": "

RCPT TO address as provided by SMTP client

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.formatted", "description": "

Normalized RCPT address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "from", "description": "

From: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "to", "description": "

To: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "cc", "description": "

Cc: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "messageId", "description": "

Message-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "date", "description": "

Datestring of message header

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "list", "description": "

If set then this message is from a mailing list

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.id", "description": "

Value from List-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.unsubscribe", "description": "

Value from List-Unsubscribe header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "expires", "description": "

Datestring, if set then indicates the time after this message is automatically deleted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "seen", "description": "

Does this message have a \\Seen flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "deleted", "description": "

Does this message have a \\Deleted flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "draft", "description": "

Does this message have a \\Draft flag

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "html", "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

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext content of the message

" }, { "group": "Success 200", "type": "Object[]", "optional": true, "field": "attachments", "description": "

List of attachments for this message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.id", "description": "

Attachment ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.filename", "description": "

Filename of the attachment

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.contentType", "description": "

MIME type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.disposition", "description": "

Attachment disposition

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.transferEncoding", "description": "

Which transfer encoding was used (actual content when fetching attachments is not encoded)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "attachments.related", "description": "

Was this attachment found from a multipart/related node. This usually means that this is an embedded image

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "attachments.sizeKb", "description": "

Approximate size of the attachment in kilobytes

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "verificationResults", "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.

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls", "description": "

TLS information. Value is false if TLS was not used

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.name", "description": "

Cipher name, eg "ECDHE-RSA-AES128-GCM-SHA256"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.version", "description": "

TLS version, eg "TLSv1/SSLv3"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.spf", "description": "

Domain name (either MFROM or HELO) of verified SPF or false if no SPF match was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.dkim", "description": "

Domain name of verified DKIM signature or false if no valid signature was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType.params", "description": "

An object with Content-Type params as key-value pairs

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this message

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "reference", "description": "

Referenced message info

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"user\": \"59fc66a03e54454869460e45\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"to\": [\n {\n \"address\": \"bob@domain.dom\",\n \"name\": \"\"\n }\n ],\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"messageId\": \"<1066976914.4721.5.camel@localhost>\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"html\": [\n \"

Welcome to Ryan Finnie's MIME torture test.

\",\n \"

While a message/rfc822 part inside another message/rfc822 part in a
message isn't too strange, 200 iterations of that would be.

\"\n ],\n \"text\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed\\nto introduce a couple of the newer features of MIME-aware MUA\",\n \"attachments\": [\n {\n \"id\": \"ATT00004\",\n \"filename\": \"foo.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n },\n {\n \"id\": \"ATT00007\",\n \"filename\": \"blah1.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n }\n ],\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n },\n \"metaData\": \"{}\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/attachments/:attachment", "title": "Download Attachment", "name": "GetMessageAttachment", "group": "Messages", "description": "

This method returns attachment file contents in binary form

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachment", "description": "

ID of the Attachment

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This attachment does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/attachments/ATT00002\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: image/png\n\n<89>PNG...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/message.eml", "title": "Get Message source", "name": "GetMessageSource", "group": "Messages", "description": "

This method returns the full RFC822 formatted source of the stored message

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1/message.eml\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: message/rfc822\n\nSubject: Ryan Finnie's MIME Torture Test v1.0\nFrom: Ryan Finnie \nTo: bob@domain.dom\nContent-Type: multipart/mixed; boundary=\"=-qYxqvD9rbH0PNeExagh1\"\n...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "List messages in a Mailbox", "name": "GetMessages", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.answered", "description": "

Does this message have a \\Answered flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

Does this message have a $Forwarded flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"answered\": false,\n \"forwarded\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/search", "title": "Search for messages", "name": "GetMessagesSearch", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "thread", "description": "

Thread ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "datestart", "description": "

Datestring for the earliest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "dateend", "description": "

Datestring for the latest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "from", "description": "

Partial match for the From: header line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to", "description": "

Partial match for the To: and Cc: header lines

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Partial match for the Subject: header line

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "attachments", "description": "

If true, then matches only messages with attachments

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "description": "

If true, then matches only messages with \\Flagged flags

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "searchable", "description": "

If true, then matches messages not in Junk or Trash

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.url", "description": "

Relative API url for fetching message contents

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"query\": \"Ryan\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/search?query=Ryan\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Update Message information", "name": "PutMessage", "group": "Messages", "description": "

This method updates message flags and also allows to move messages to a different mailbox

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "message", "description": "

Message ID values. Either comma separated numbers (1,2,3) or colon separated range (3:15)

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "moveTo", "description": "

ID of the target Mailbox if you want to move messages

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "seen", "description": "

State of the \\Seen flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "flagged", "description": "

State of the \\Flagged flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "draft", "description": "

State of the \\Draft flag

" }, { "group": "Parameter", "type": "Datestring", "optional": false, "field": "expires", "description": "

Either expiration date or false to turn of autoexpiration

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "id", "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

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "updated", "description": "

If messages were not moved, then indicates the number of updated messages

" } ] }, "examples": [ { "title": "Update Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"updated\": 2\n}", "type": "json" }, { "title": "Move Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": [\n [1,24],\n [2,25]\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Mark messages as unseen:", "content": "curl -i -XPUT \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"message\": \"1,2,3\",\n \"seen\": false\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/submit", "title": "Submit Draft for delivery", "name": "SubmitStoredMessage", "group": "Messages", "description": "

This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the draft was moved to (usually Sent mail)

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" } ] }, "examples": [ { "title": "Submit Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"queueId\": \"1682f5a712f000dfb6\",\n \"message\": {\n \"id\": 3,\n \"mailbox\": \"5c279b4e17abae166446f968\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Submit a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Upload Message", "name": "UploadMessage", "group": "Messages", "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 strucutred data fields, then do not use the raw property.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "unseen", "defaultValue": "false", "description": "

Is the message unseen or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "draft", "defaultValue": "false", "description": "

Is the message a draft or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "defaultValue": "false", "description": "

Is the message flagged or not

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "raw", "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

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automaticall y

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "reference.attachments", "defaultValue": "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

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Message information

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored into

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 2,\n \"mailbox\": \"5a2f9ca57308fc3a6f5f811e\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Upload a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: message/rfc822' \\\n-d 'From: sender@example.com\nTo: recipient@example.com\nSubject: hello world!\n\nExample message'", "type": "curl" }, { "title": "Upload a Message Structure:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"from\": {\n \"name\": \"sender name\",\n \"address\": \"sender@example.com\"\n },\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/submit", "title": "Submit a Message for Delivery", "name": "PostSubmit", "group": "Submission", "description": "

Use this method to send emails from an user account

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

Mailbox ID where to upload the message. If not set then message is uploaded to Sent Mail folder.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadOnly", "defaultValue": "false", "description": "

If true then generated message is not added to the sending queue

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "isDraft", "defaultValue": "false", "description": "

If true then treats this message as draft (should be used with uploadOnly=true)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sendTime", "description": "

Datestring for delivery if message should be sent some later time

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope", "description": "

SMTP envelope. If not provided then resolved either from message headers or from referenced message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope.from", "description": "

Sender information. If not set then it is resolved to User's default address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.from.address", "description": "

Sender address. If this is not listed as allowed address for the sending User then it is replaced with the User's default address

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "envelope.to", "description": "

Recipients information

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.to.address", "description": "

Recipient address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "meta", "description": "

Custom metainfo for the message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.queueId", "description": "

Queue ID in MTA

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 16,\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"queueId\": \"1600798505b000a25f\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "type": "String", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "type": "String", "optional": false, "field": "code", "description": "

Reason for the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"User account is disabled\",\n \"code\": \"ERRDISABLEDUSER\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "# Sender info is derived from account settings\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" }, { "title": "Reply to All", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"id\": 15,\n \"action\": \"replyAll\"\n },\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" }, { "title": "Upload only", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/5a2fe496ce76ede84f177ec3/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"5a2fe496ce76ede84f177ec4\",\n \"id\": 1,\n \"action\": \"replyAll\"\n },\n \"uploadOnly\": true,\n \"mailbox\": \"5a33b45acf482d3219955bc4\",\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/submit.js", "groupTitle": "Submission" }, { "type": "post", "url": "/users/:user/2fa/totp/check", "title": "Validate TOTP Token", "name": "CheckTotp2FA", "group": "TwoFactorAuth", "description": "

This method checks if a TOTP token provided by an User is valid for authentication

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to validate TOTP\"\n \"code\": \"InvalidToken\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/check \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa", "title": "Disable 2FA", "name": "Disable2FA", "group": "TwoFactorAuth", "description": "

This method disables all 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/custom", "title": "Disable custom 2FA for an user", "name": "DisableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables custom 2FA. If it was the only 2FA set up, then account password for IMAP/POP3/SMTP gets enabled again

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/totp", "title": "Disable TOTP auth", "name": "DisableTotp2FA", "group": "TwoFactorAuth", "description": "

This method disables TOTP for an user. Does not affect other 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "put", "url": "/users/:user/2fa/custom", "title": "Enable custom 2FA for an user", "name": "EnableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables account password for IMAP/POP3/SMTP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/enable", "title": "Enable TOTP seed", "name": "EnableTotp2FA", "group": "TwoFactorAuth", "description": "

This method enables TOTP for an user by verifying the seed value generated from 2fa/totp/setup

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number that matches seed value from 2fa/totp/setup

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/enable \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/setup", "title": "Generate TOTP seed", "name": "SetupTotp2FA", "group": "TwoFactorAuth", "description": "

This method generates TOTP seed and QR code for 2FA. User needs to verify the seed value using 2fa/totp/enable endpoint

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "label", "description": "

Label text for QR code (defaults to username)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "issuer", "description": "

Description text for QR code (defaults to "WildDuck")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "seed", "description": "

Generated TOTP seed value

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "qrcode", "description": "

Base64 encoded QR code

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"seed\": \"secretseed\",\n \"qrcode\": \"base64-encoded-image\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/setup \\\n-H 'Content-type: application/json' \\\n-d '{\n \"label\": \"user@example.com\",\n \"issuer\": \"My Awesome Web Service\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:id", "title": "Delete an User", "name": "DeleteUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0?ip=127.0.0.1", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id/updates", "title": "Open change stream", "name": "GetUpdates", "group": "Users", "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

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "String", "optional": false, "field": "command", "description": "

Indicates data event type

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: text/event-stream\n\ndata: {\ndata: \"command\": \"CREATE\",\ndata: \"mailbox\": \"5a1d3061153888cdcd62a719\",\ndata: \"path\": \"First Level/Second 😎 Level/Folder Name\"\ndata: }", "type": "text" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "var stream = new EventSource('/users/59fc66a03e54454869460e45/updates');\nstream.onmessage = function(e) {\n console.log(JSON.parse(e.data));\n};", "type": "javascript" } ], "version": "0.0.0", "filename": "lib/api/updates.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id", "title": "Request User information", "name": "GetUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "retention", "description": "

Default retention time in ms. false if not enabled

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "enabled2fa", "description": "

List of enabled 2FA methods

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "keyInfo", "description": "

Information about public key or false if key is not available

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.name", "description": "

Name listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.address", "description": "

E-mail address listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.fingerprint", "description": "

Fingerprint of the public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this user

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.recipients", "description": "

Sending quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.allowed", "description": "

How many messages per 24 hours can be sent

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.used", "description": "

How many messages are sent during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hours can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.received", "description": "

Receiving quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.allowed", "description": "

How many messages per 1 hour can be received

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.used", "description": "

How many messages are received during current 1 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.ttl", "description": "

Time until the end of current 1 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapUpload", "description": "

IMAP upload quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.allowed", "description": "

How many bytes per 24 hours can be uploaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.used", "description": "

How many bytes are uploaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapDownload", "description": "

IMAP download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.allowed", "description": "

How many bytes per 24 hours can be downloaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.pop3Download", "description": "

POP3 download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.allowed", "description": "

How many bytes per 24 hours can be downloaded via POP3. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.allowed", "description": "

How many parallel IMAP connections are permitted

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.used", "description": "

How many parallel IMAP connections are currenlty in use

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

Disabled scopes for this user

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\",\n \"username\": \"testuser01\",\n \"name\": null,\n \"address\": \"testuser01@example.com\",\n \"retention\": false,\n \"enabled2fa\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"pubKey\": \"\",\n \"keyInfo\": false,\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"limits\": {\n \"quota\": {\n \"allowed\": 107374182400,\n \"used\": 289838\n },\n \"recipients\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n },\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"tags\": [\"green\", \"blue\"],\n \"disabledScopes\": [\"pop3\"],\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/resolve/:username", "title": "Resolve ID for an username", "name": "GetUsername", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "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")

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/resolve/testuser", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users", "title": "List registered Users", "name": "GetUsers", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of username or default email address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The User must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The User must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

User listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the User'

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59cb948ad80a820b68f05230\",\n \"username\": \"myuser\",\n \"name\": \"John Doe\",\n \"address\": \"john@example.com\",\n \"tags\": [],\n \"forward\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"quota\": {\n \"allowed\": 1073741824,\n \"used\": 17799833\n },\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users", "title": "Create new user", "name": "PostUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username of the User. Dots are allowed but informational only ("user.name" is the same as "username").

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

Default email address for the User (autogenerated if not set)

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "emptyAddress", "description": "

If true then do not autogenerate missing email address for the User. Only needed if you want to create an user account that does not have any email address associated

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "requirePasswordChange", "description": "

If true then requires the user to change password, useful if password for the account was autogenerated

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "addTagsToAddress", "description": "

If true then autogenerated address gets the same tags as the user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "defaultValue": "50", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "mailboxes", "description": "

Optional names for special mailboxes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.sent", "defaultValue": "Sent Mail", "description": "

Path of Sent Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.junk", "defaultValue": "Junk", "description": "

Path of spam folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.drafts", "defaultValue": "Drafts", "description": "

Path of drafts folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.trash", "defaultValue": "Trash", "description": "

Path of trash folder

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created User

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1bda70bfbd1442cd96c6f0\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"address\": \"john.doe@example.com\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" }, { "title": "Example address:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"john.doe@example.com\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/quota/reset", "title": "Recalculate User quota", "name": "PostUserQuota", "group": "Users", "description": "

This method recalculates quota usage for an 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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "storageUsed", "description": "

Calculated quota usage for the user

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"storageUsed\": 1234567\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/quota/reset", "title": "Recalculate Quota for all Users", "name": "PostUserQuotaAll", "group": "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to process request\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id", "title": "Update User information", "name": "PutUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "existingPassword", "description": "

If provided then validates against account password before applying any changes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "password", "description": "

New password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disable2fa", "description": "

If true, then disables 2FA for this user

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then disables user account (can not login, can not receive messages)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"name\": \"Updated user name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id/logout", "title": "Log out User", "name": "PutUserLogout", "group": "Users", "description": "

This method logs out all user sessions in IMAP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "reason", "description": "

Message to be shown to connected IMAP client

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/logout \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reason\": \"Logout requested from API\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/password/reset", "title": "Reset password for an User", "name": "ResetUserPassword", "group": "Users", "description": "

This method generates a new temporary password for an User. Additionally it removes all two-factor authentication settings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "validAfter", "description": "

Allow using the generated password not earlier than provided time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "description": "

Temporary password

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"password\": \"temporarypass\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96/password/reset \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" } ] }); +define({ "api": [ { "type": "delete", "url": "/addresses/forwarded/:address", "title": "Delete a forwarded Address", "name": "DeleteForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/addresses/:address", "title": "Delete an Address", "name": "DeleteUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Trying to delete main address. Set a new main address first\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/resolve/:address", "title": "Get Address info", "name": "GetAddressInfo", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address or e-mail address string

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the user if the address belongs to an User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets if this is a Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage for Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "User-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d771bb\"\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" }, { "title": "Forwarded-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"autoreply\": {\n \"status\": false\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/resolve/k%C3%A4ru%40j%C3%B5geva.ee", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses", "title": "List registered Addresses", "name": "GetAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of an address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The Address must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The Address must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.user", "description": "

User ID this address belongs to if this is an User address

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

If true then it is a forwarded address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d790e7a\"\n },\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"forwarded\": true\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/forwarded/:address", "title": "Request forwarded Addresses information", "name": "GetForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses/:address", "title": "Request Addresses information", "name": "GetUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses", "title": "List registered Addresses for an User", "name": "GetUserAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/addresses/forwarded", "title": "Create new forwarded Address", "name": "PostForwardedAddress", "group": "Addresses", "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)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This email address already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/addresses/forwarded \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\",\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"forwards\": 500\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/users/:user/addresses", "title": "Create new Address", "name": "PostUserAddress", "group": "Addresses", "description": "

Add a new email address for an 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 and username@* catches all emails to these domains or users without a registered destination (requires allowWildcard argument)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "main", "defaultValue": "false", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/addresses \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/forwarded/:address", "title": "Update forwarded Address information", "name": "PutForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/forwarded/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"targets\": [\n \"some.other.address@example.com\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/renameDomain", "title": "Rename domain in addresses", "name": "PutRenameDomain", "group": "Addresses", "description": "

Renames domain names for addresses, DKIM keys and Domain Aliases

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "oldDomain", "description": "

Old Domain Name

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "newDomain", "description": "

New Domain Name

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to rename domain\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/renameDomain \\\n-H 'Content-type: application/json' \\\n-d '{\n \"oldDomain\": \"example.com\",\n \"newDomain\": \"blurdybloop.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/users/:user/addresses/:address", "title": "Update Address information", "name": "PutUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address if you want to rename existing address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/addresses/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"main\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/asps/:asp", "title": "Delete an Application Password", "name": "DeleteASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps/:asp", "title": "Request ASP information", "name": "GetASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Specific Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps", "title": "List Application Passwords", "name": "GetASPs", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "showAll", "defaultValue": "false", "description": "

If not true then skips entries with a TTL set

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "post", "url": "/users/:user/asps", "title": "Create new Application Password", "name": "PostASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "scopes", "description": "

List of scopes this Password applies to. Special scope "*" indicates that this password can be used for any scope except "master"

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "generateMobileconfig", "description": "

If true then result contains a mobileconfig formatted file with account config

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "ttl", "description": "

TTL in seconds for this password. Every time password is used, TTL is reset to this value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "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"

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mobileconfig", "description": "

Base64 encoded mobileconfig file. Generated profile file should be sent to the client with Content-Type value of application/x-apple-aspen-config.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"password\": \"rflhmllyegblyybd\",\n \"mobileconfig\": \"MIIQBgYJKoZIhvcNAQcCoIIP9...\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/asps \\\n-H 'Content-type: application/json' \\\n-d '{\n \"description\": \"Thunderbird\",\n \"scopes\": [\"imap\", \"smtp\"],\n \"generateMobileconfig\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/archived/messages", "title": "List archived messages", "name": "GetArchivedMessages", "group": "Archive", "description": "

Archive contains all recently deleted messages besides Drafts etc.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Message (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a13e54454869460e58\",\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/messages/:message/restore", "title": "Restore archived Message", "name": "RestoreMessage", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the target Mailbox. If not set then original mailbox is used.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

Maibox ID the message was moved to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

New ID for the Message

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": 4\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages/59fc66a13e54454869460e58/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/restore", "title": "Restore archived messages", "name": "RestoreMessages", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "start", "description": "

Datestring

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "end", "description": "

Datestring

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"start\": \"2018-10-01T00:00:00.000Z\",\n \"end\": \"2018-10-08T23:59:59.999Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "get", "url": "/users/:user/authlog", "title": "List authentication Events", "name": "GetAuthlog", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action", "description": "

Limit listing only to values with specific action value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "filterIp", "description": "

Limit listing only to values with specific IP address

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"action\": \"account created\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog?action=account+created\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "get", "url": "/users/:user/authlog/:event", "title": "Request Event information", "name": "GetAuthlogEvent", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "event", "description": "

ID of the Event

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog/59fc66a03e54454869460e4d\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "post", "url": "/authenticate", "title": "Authenticate an User", "name": "PostAuth", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username or E-mail address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "protocol", "description": "

Application identifier for security logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "scope", "defaultValue": "master", "description": "

Required scope. One of master, imap, smtp, pop3

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "token", "defaultValue": "false", "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".

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "scope", "description": "

The scope this authentication is valid for

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "require2fa", "description": "

List of enabled 2FA mechanisms

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "requirePasswordChange", "description": "

Indicates if account hassword has been reset and should be replaced

" }, { "group": "Success 200", "type": "String", "optional": true, "field": "token", "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.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a12914c350c183bd0d331f0\",\n \"username\": \"myuser\",\n \"scope\": \"master\",\n \"require2fa\": [\n \"totp\"\n ],\n \"requirePasswordChange\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "optional": true, "field": "code", "description": "

Error code

" }, { "group": "Error 4xx", "optional": true, "field": "id", "description": "

User ID if the user exists

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Authentication failed. Invalid scope\",\n \"code\": \"InvalidAuthScope\",\n \"id\": \"5b22283d45e8d47572eb0381\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/authenticate \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"secretpass\",\n \"scope\": \"master\",\n \"token\": \"true\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "delete", "url": "/users/:user/autoreply", "title": "Delete Autoreply information", "name": "DeleteAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "get", "url": "/users/:user/autoreply", "title": "Request Autoreply information", "name": "GetAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "start", "description": "

Datestring of the start of the autoreply

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "end", "description": "

Datestring of the end of the autoreply

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"status\": true,\n \"subject\": \"\",\n \"text\": \"Away from office until Dec.19\",\n \"html\": \"\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "put", "url": "/users/:user/autoreply", "title": "Update Autoreply information", "name": "PutAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "start", "description": "

Datestring of the start of the autoreply or boolean false to disable start checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "end", "description": "

Datestring of the end of the autoreply or boolean false to disable end checks

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/autoreply \\\n-H 'Content-type: application/json' \\\n-d '{\n \"status\": true,\n \"text\": \"Away from office until Dec.19\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "delete", "url": "/dkim/:dkim", "title": "Delete a DKIM key", "name": "DeleteDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/dkim/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim", "title": "List registered DKIM keys", "name": "GetDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/:dkim", "title": "Request DKIM information", "name": "GetDkimKey", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "post", "url": "/dkim", "title": "Create or update DKIM key for domain", "name": "PostDkim", "group": "DKIM", "description": "

Add a new DKIM key for a Domain or update existing one. There can be single DKIM key registered for each domain name.

", "header": { "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "selector", "description": "

Selector for the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "description", "description": "

Key description

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "privateKey", "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.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/dkim \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"privateKey\": \"-----BEGIN RSA PRIVATE KEY-----...\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/resolve/:domain", "title": "Resolve ID for a DKIM domain", "name": "ResolveDKIM", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

DKIM domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

DKIM unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This domain does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "delete", "url": "/domainaliases/:alias", "title": "Delete an Alias", "name": "DeleteDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases", "title": "List registered Domain Aliases", "name": "GetAliases", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain Alias or Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.alias", "description": "

Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this alias applies to

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/:alias", "title": "Request Alias information", "name": "GetDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

Alias target

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the alias was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "post", "url": "/domainaliases", "title": "Create new Domain Alias", "name": "PostDomainAlias", "group": "DomainAliases", "description": "

Add a new Alias for a Domain. This allows to accept mail on username@domain and username@alias

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Domain Alias

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

Domain name this Alias applies to

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Domain Alias

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/domainaliases \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"alias\": \"example.org\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/resolve/:alias", "title": "Resolve ID for a domain aias", "name": "ResolveDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Alias unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "delete", "url": "/users/:user/filters/:filter", "title": "Delete a Filter", "name": "DeleteFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters/:filter", "title": "Request Filter information", "name": "GetFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the Filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the Filter

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "query.size", "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

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "action.targets", "description": "

A list of email addresses / HTTP URLs to forward the message to

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"created\": \"2017-11-27T13:11:00.835Z\",\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n },\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters", "title": "List Filters for an User", "name": "GetFilters", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Filter description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Filter ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the filter was created

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.query", "description": "

A list of query descriptions

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.action", "description": "

A list of action descriptions

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"query\": [\n [\n \"from\",\n \"(Mäger)\"\n ]\n ],\n \"action\": [\n [\n \"mark as read\"\n ]\n ],\n \"disabled\": false,\n \"created\": \"2017-11-27T13:11:00.835Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "post", "url": "/users/:user/filters", "title": "Create new Filter", "name": "PostFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters \\\n-H 'Content-type: application/json' \\\n-d '{\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "put", "url": "/users/:user/filters/:filter", "title": "Update Filter information", "name": "PutFilter", "group": "Filters", "description": "

This method updates Filter data. To unset a value, use empty strings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c \\\n-H 'Content-type: application/json' \\\n-d '{\n \"action\": {\n \"seen\": \"\",\n \"flag\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox", "title": "Delete a Mailbox", "name": "DeleteMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID. Special use folders and INBOX can not be deleted

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox deletion failed with code CANNOT\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox", "title": "Request Mailbox information", "name": "GetMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": " HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This mailbox does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes", "title": "List Mailboxes for an User", "name": "GetMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "specialUse", "defaultValue": "false", "description": "

Should the response include only folders with specialUse flag set.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "counters", "defaultValue": "false", "description": "

Should the response include counters (total + unseen). Counters come with some overhead.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "sizes", "defaultValue": "false", "description": "

Should the response include mailbox size in bytes. Size numbers come with a lot of overhead as an aggregated query is ran.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

List of user mailboxes

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n },\n {\n \"id\": \"59fc66a03e54454869460e47\",\n \"name\": \"Sent Mail\",\n \"path\": \"Sent Mail\",\n \"specialUse\": \"\\\\Sent\",\n \"modifyIndex\": 145,\n \"subscribed\": true,\n \"total\": 15,\n \"unseen\": 0\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?counters=true", "type": "curl" }, { "title": "Special Use Only", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?specialUse=true", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "post", "url": "/users/:user/mailboxes", "title": "Create new Mailbox", "name": "PostMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "defaultValue": "0", "description": "

Retention policy for the created Mailbox. Milliseconds after a message added to mailbox expires. Set to 0 to disable.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d2816153888cdcd62a715\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox creation failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"First Level/Second 😎 Level/Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox", "title": "Update Mailbox information", "name": "PutMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "path", "description": "

Full path of the mailbox, use this to rename an existing Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Retention policy for the Mailbox. Changing retention value only affects messages added to this folder after the change

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "subscribed", "description": "

Change Mailbox subscription state

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox update failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"Updated Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Delete a Message", "name": "DeleteMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Delete Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Delete a Message:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/2\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/forward", "title": "Forward stored Message", "name": "ForwardStoredMessage", "group": "Messages", "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 an user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "target", "description": "

Number of original forwarding target

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "addresses", "description": "

An array of additional forward targets

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "forwarded", "description": "

Information about forwarding targets

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.seq", "description": "

Sequence ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.type", "description": "

Target type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.value", "description": "

Target address

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"1600d2f36470008b72\",\n \"forwarded\": [\n {\n \"seq\": \"001\",\n \"type\": \"mail\",\n \"value\": \"andris@ethereal.email\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Forward a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/forward\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"addresses\": [\n \"andris@ethereal.email\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Request Message information", "name": "GetMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "markAsSeen", "defaultValue": "false", "description": "

If true then marks message as seen

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "envelope", "description": "

SMTP envelope (if available)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.from", "description": "

Address from MAIL FROM

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "envelope.rcpt", "description": "

Array of addresses from RCPT TO (should have just one normally)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.value", "description": "

RCPT TO address as provided by SMTP client

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.formatted", "description": "

Normalized RCPT address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "from", "description": "

From: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "to", "description": "

To: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "cc", "description": "

Cc: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "messageId", "description": "

Message-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "date", "description": "

Datestring of message header

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "list", "description": "

If set then this message is from a mailing list

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.id", "description": "

Value from List-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.unsubscribe", "description": "

Value from List-Unsubscribe header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "expires", "description": "

Datestring, if set then indicates the time after this message is automatically deleted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "seen", "description": "

Does this message have a \\Seen flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "deleted", "description": "

Does this message have a \\Deleted flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "draft", "description": "

Does this message have a \\Draft flag

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "html", "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

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext content of the message

" }, { "group": "Success 200", "type": "Object[]", "optional": true, "field": "attachments", "description": "

List of attachments for this message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.id", "description": "

Attachment ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.filename", "description": "

Filename of the attachment

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.contentType", "description": "

MIME type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.disposition", "description": "

Attachment disposition

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.transferEncoding", "description": "

Which transfer encoding was used (actual content when fetching attachments is not encoded)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "attachments.related", "description": "

Was this attachment found from a multipart/related node. This usually means that this is an embedded image

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "attachments.sizeKb", "description": "

Approximate size of the attachment in kilobytes

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "verificationResults", "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.

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls", "description": "

TLS information. Value is false if TLS was not used

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.name", "description": "

Cipher name, eg "ECDHE-RSA-AES128-GCM-SHA256"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.version", "description": "

TLS version, eg "TLSv1/SSLv3"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.spf", "description": "

Domain name (either MFROM or HELO) of verified SPF or false if no SPF match was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.dkim", "description": "

Domain name of verified DKIM signature or false if no valid signature was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType.params", "description": "

An object with Content-Type params as key-value pairs

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this message

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "reference", "description": "

Referenced message info

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"user\": \"59fc66a03e54454869460e45\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"to\": [\n {\n \"address\": \"bob@domain.dom\",\n \"name\": \"\"\n }\n ],\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"messageId\": \"<1066976914.4721.5.camel@localhost>\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"html\": [\n \"

Welcome to Ryan Finnie's MIME torture test.

\",\n \"

While a message/rfc822 part inside another message/rfc822 part in a
message isn't too strange, 200 iterations of that would be.

\"\n ],\n \"text\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed\\nto introduce a couple of the newer features of MIME-aware MUA\",\n \"attachments\": [\n {\n \"id\": \"ATT00004\",\n \"filename\": \"foo.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n },\n {\n \"id\": \"ATT00007\",\n \"filename\": \"blah1.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n }\n ],\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n },\n \"metaData\": \"{}\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/attachments/:attachment", "title": "Download Attachment", "name": "GetMessageAttachment", "group": "Messages", "description": "

This method returns attachment file contents in binary form

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachment", "description": "

ID of the Attachment

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This attachment does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/attachments/ATT00002\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: image/png\n\n<89>PNG...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/message.eml", "title": "Get Message source", "name": "GetMessageSource", "group": "Messages", "description": "

This method returns the full RFC822 formatted source of the stored message

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1/message.eml\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: message/rfc822\n\nSubject: Ryan Finnie's MIME Torture Test v1.0\nFrom: Ryan Finnie \nTo: bob@domain.dom\nContent-Type: multipart/mixed; boundary=\"=-qYxqvD9rbH0PNeExagh1\"\n...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "List messages in a Mailbox", "name": "GetMessages", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.answered", "description": "

Does this message have a \\Answered flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

Does this message have a $Forwarded flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"answered\": false,\n \"forwarded\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/search", "title": "Search for messages", "name": "GetMessagesSearch", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "thread", "description": "

Thread ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "datestart", "description": "

Datestring for the earliest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "dateend", "description": "

Datestring for the latest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "from", "description": "

Partial match for the From: header line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to", "description": "

Partial match for the To: and Cc: header lines

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Partial match for the Subject: header line

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "attachments", "description": "

If true, then matches only messages with attachments

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "description": "

If true, then matches only messages with \\Flagged flags

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "searchable", "description": "

If true, then matches messages not in Junk or Trash

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.url", "description": "

Relative API url for fetching message contents

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"query\": \"Ryan\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/search?query=Ryan\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Update Message information", "name": "PutMessage", "group": "Messages", "description": "

This method updates message flags and also allows to move messages to a different mailbox

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "message", "description": "

Message ID values. Either comma separated numbers (1,2,3) or colon separated range (3:15)

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "moveTo", "description": "

ID of the target Mailbox if you want to move messages

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "seen", "description": "

State of the \\Seen flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "flagged", "description": "

State of the \\Flagged flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "draft", "description": "

State of the \\Draft flag

" }, { "group": "Parameter", "type": "Datestring", "optional": false, "field": "expires", "description": "

Either expiration date or false to turn of autoexpiration

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "id", "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

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "updated", "description": "

If messages were not moved, then indicates the number of updated messages

" } ] }, "examples": [ { "title": "Update Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"updated\": 2\n}", "type": "json" }, { "title": "Move Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": [\n [1,24],\n [2,25]\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Mark messages as unseen:", "content": "curl -i -XPUT \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"message\": \"1,2,3\",\n \"seen\": false\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/submit", "title": "Submit Draft for delivery", "name": "SubmitStoredMessage", "group": "Messages", "description": "

This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "deleteFiles", "description": "

If true then deletes attachment files listed in metaData.attachedFiles array

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the draft was moved to (usually Sent mail)

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" } ] }, "examples": [ { "title": "Submit Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"queueId\": \"1682f5a712f000dfb6\",\n \"message\": {\n \"id\": 3,\n \"mailbox\": \"5c279b4e17abae166446f968\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Submit a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"deleteFiles\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Upload Message", "name": "UploadMessage", "group": "Messages", "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 strucutred data fields, then do not use the raw property.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "unseen", "defaultValue": "false", "description": "

Is the message unseen or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "draft", "defaultValue": "false", "description": "

Is the message a draft or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "defaultValue": "false", "description": "

Is the message flagged or not

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "raw", "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

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automaticall y

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "files", "description": "

Attachments as storage file IDs. These attachments are also listed to message metaData.attachedFiles array

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "reference.attachments", "defaultValue": "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

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Message information

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored into

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 2,\n \"mailbox\": \"5a2f9ca57308fc3a6f5f811e\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Upload a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: message/rfc822' \\\n-d 'From: sender@example.com\nTo: recipient@example.com\nSubject: hello world!\n\nExample message'", "type": "curl" }, { "title": "Upload a Message Structure:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"from\": {\n \"name\": \"sender name\",\n \"address\": \"sender@example.com\"\n },\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "delete", "url": "/users/:user/storage/:file", "title": "Delete a File", "name": "DeleteStorage", "group": "Storage", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the File

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Trying to delete main address. Set a new main address first\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59ef21aef255ed1d9d790e7a/storage/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "get", "url": "/users/:user/storage", "title": "List stored files", "name": "GetStorage", "group": "Storage", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a filename

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

File listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the File

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.filename", "description": "

Filename

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType", "description": "

Content-Type of the file

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.size", "description": "

File size

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"filename\": \"hello.txt\",\n \"size\": 1024\n },\n {\n \"id\": \"59ef21aef255ed1d9d790e82\",\n \"filename\": \"finances.xls\",\n \"size\": 2084\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/storage", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "get", "url": "/users/:user/storage/:file", "title": "Download File", "name": "GetStorageFile", "group": "Storage", "description": "

This method returns stored file contents in binary form

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "file", "description": "

ID of the File

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This attachment does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/storage/59fc66a13e54454869460e57\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: image/png\n\n<89>PNG...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "post", "url": "/users/:user/storage", "title": "Upload File", "name": "UploadStorage", "group": "Storage", "description": "

This method allows to upload an attachment to be linked from a draft

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "content", "description": "

Base64 encoded file content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "filename", "description": "

Filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "contentType", "description": "

MIME type for the file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "id", "description": "

File ID

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a2f9ca57308fc3a6f5f811e\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Upload a file:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/storage\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"content\": \"aGVsbG93IGZyb20=\",\n \"filename\": \"test.txt\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "post", "url": "/users/:user/submit", "title": "Submit a Message for Delivery", "name": "PostSubmit", "group": "Submission", "description": "

Use this method to send emails from an user account

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

Mailbox ID where to upload the message. If not set then message is uploaded to Sent Mail folder.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadOnly", "defaultValue": "false", "description": "

If true then generated message is not added to the sending queue

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "isDraft", "defaultValue": "false", "description": "

If true then treats this message as draft (should be used with uploadOnly=true)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sendTime", "description": "

Datestring for delivery if message should be sent some later time

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope", "description": "

SMTP envelope. If not provided then resolved either from message headers or from referenced message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope.from", "description": "

Sender information. If not set then it is resolved to User's default address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.from.address", "description": "

Sender address. If this is not listed as allowed address for the sending User then it is replaced with the User's default address

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "envelope.to", "description": "

Recipients information

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.to.address", "description": "

Recipient address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "meta", "description": "

Custom metainfo for the message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.queueId", "description": "

Queue ID in MTA

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 16,\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"queueId\": \"1600798505b000a25f\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "type": "String", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "type": "String", "optional": false, "field": "code", "description": "

Reason for the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"User account is disabled\",\n \"code\": \"ERRDISABLEDUSER\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "# Sender info is derived from account settings\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" }, { "title": "Reply to All", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"id\": 15,\n \"action\": \"replyAll\"\n },\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" }, { "title": "Upload only", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/5a2fe496ce76ede84f177ec3/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"5a2fe496ce76ede84f177ec4\",\n \"id\": 1,\n \"action\": \"replyAll\"\n },\n \"uploadOnly\": true,\n \"mailbox\": \"5a33b45acf482d3219955bc4\",\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/submit.js", "groupTitle": "Submission" }, { "type": "post", "url": "/users/:user/2fa/totp/check", "title": "Validate TOTP Token", "name": "CheckTotp2FA", "group": "TwoFactorAuth", "description": "

This method checks if a TOTP token provided by an User is valid for authentication

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to validate TOTP\"\n \"code\": \"InvalidToken\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/check \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa", "title": "Disable 2FA", "name": "Disable2FA", "group": "TwoFactorAuth", "description": "

This method disables all 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/custom", "title": "Disable custom 2FA for an user", "name": "DisableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables custom 2FA. If it was the only 2FA set up, then account password for IMAP/POP3/SMTP gets enabled again

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/totp", "title": "Disable TOTP auth", "name": "DisableTotp2FA", "group": "TwoFactorAuth", "description": "

This method disables TOTP for an user. Does not affect other 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "put", "url": "/users/:user/2fa/custom", "title": "Enable custom 2FA for an user", "name": "EnableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables account password for IMAP/POP3/SMTP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/enable", "title": "Enable TOTP seed", "name": "EnableTotp2FA", "group": "TwoFactorAuth", "description": "

This method enables TOTP for an user by verifying the seed value generated from 2fa/totp/setup

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number that matches seed value from 2fa/totp/setup

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/enable \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/setup", "title": "Generate TOTP seed", "name": "SetupTotp2FA", "group": "TwoFactorAuth", "description": "

This method generates TOTP seed and QR code for 2FA. User needs to verify the seed value using 2fa/totp/enable endpoint

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "label", "description": "

Label text for QR code (defaults to username)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "issuer", "description": "

Description text for QR code (defaults to "WildDuck")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "seed", "description": "

Generated TOTP seed value

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "qrcode", "description": "

Base64 encoded QR code

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"seed\": \"secretseed\",\n \"qrcode\": \"base64-encoded-image\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/setup \\\n-H 'Content-type: application/json' \\\n-d '{\n \"label\": \"user@example.com\",\n \"issuer\": \"My Awesome Web Service\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:id", "title": "Delete an User", "name": "DeleteUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0?ip=127.0.0.1", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id/updates", "title": "Open change stream", "name": "GetUpdates", "group": "Users", "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

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "String", "optional": false, "field": "command", "description": "

Indicates data event type

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: text/event-stream\n\ndata: {\ndata: \"command\": \"CREATE\",\ndata: \"mailbox\": \"5a1d3061153888cdcd62a719\",\ndata: \"path\": \"First Level/Second 😎 Level/Folder Name\"\ndata: }", "type": "text" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "var stream = new EventSource('/users/59fc66a03e54454869460e45/updates');\nstream.onmessage = function(e) {\n console.log(JSON.parse(e.data));\n};", "type": "javascript" } ], "version": "0.0.0", "filename": "lib/api/updates.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id", "title": "Request User information", "name": "GetUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "retention", "description": "

Default retention time in ms. false if not enabled

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "enabled2fa", "description": "

List of enabled 2FA methods

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "keyInfo", "description": "

Information about public key or false if key is not available

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.name", "description": "

Name listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.address", "description": "

E-mail address listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.fingerprint", "description": "

Fingerprint of the public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this user

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.recipients", "description": "

Sending quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.allowed", "description": "

How many messages per 24 hours can be sent

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.used", "description": "

How many messages are sent during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hours can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.received", "description": "

Receiving quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.allowed", "description": "

How many messages per 1 hour can be received

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.used", "description": "

How many messages are received during current 1 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.ttl", "description": "

Time until the end of current 1 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapUpload", "description": "

IMAP upload quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.allowed", "description": "

How many bytes per 24 hours can be uploaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.used", "description": "

How many bytes are uploaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapDownload", "description": "

IMAP download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.allowed", "description": "

How many bytes per 24 hours can be downloaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.pop3Download", "description": "

POP3 download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.allowed", "description": "

How many bytes per 24 hours can be downloaded via POP3. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.allowed", "description": "

How many parallel IMAP connections are permitted

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.used", "description": "

How many parallel IMAP connections are currenlty in use

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

Disabled scopes for this user

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\",\n \"username\": \"testuser01\",\n \"name\": null,\n \"address\": \"testuser01@example.com\",\n \"retention\": false,\n \"enabled2fa\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"pubKey\": \"\",\n \"keyInfo\": false,\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"limits\": {\n \"quota\": {\n \"allowed\": 107374182400,\n \"used\": 289838\n },\n \"recipients\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n },\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"tags\": [\"green\", \"blue\"],\n \"disabledScopes\": [\"pop3\"],\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/resolve/:username", "title": "Resolve ID for an username", "name": "GetUsername", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "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")

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/resolve/testuser", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users", "title": "List registered Users", "name": "GetUsers", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of username or default email address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The User must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The User must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

User listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the User'

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59cb948ad80a820b68f05230\",\n \"username\": \"myuser\",\n \"name\": \"John Doe\",\n \"address\": \"john@example.com\",\n \"tags\": [],\n \"forward\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"quota\": {\n \"allowed\": 1073741824,\n \"used\": 17799833\n },\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users", "title": "Create new user", "name": "PostUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username of the User. Dots are allowed but informational only ("user.name" is the same as "username").

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

Default email address for the User (autogenerated if not set)

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "emptyAddress", "description": "

If true then do not autogenerate missing email address for the User. Only needed if you want to create an user account that does not have any email address associated

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "requirePasswordChange", "description": "

If true then requires the user to change password, useful if password for the account was autogenerated

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "addTagsToAddress", "description": "

If true then autogenerated address gets the same tags as the user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "defaultValue": "50", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "mailboxes", "description": "

Optional names for special mailboxes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.sent", "defaultValue": "Sent Mail", "description": "

Path of Sent Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.junk", "defaultValue": "Junk", "description": "

Path of spam folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.drafts", "defaultValue": "Drafts", "description": "

Path of drafts folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.trash", "defaultValue": "Trash", "description": "

Path of trash folder

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created User

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1bda70bfbd1442cd96c6f0\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"address\": \"john.doe@example.com\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" }, { "title": "Example address:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"john.doe@example.com\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/quota/reset", "title": "Recalculate User quota", "name": "PostUserQuota", "group": "Users", "description": "

This method recalculates quota usage for an 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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "storageUsed", "description": "

Calculated quota usage for the user

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"storageUsed\": 1234567\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/quota/reset", "title": "Recalculate Quota for all Users", "name": "PostUserQuotaAll", "group": "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to process request\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id", "title": "Update User information", "name": "PutUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "existingPassword", "description": "

If provided then validates against account password before applying any changes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "password", "description": "

New password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disable2fa", "description": "

If true, then disables 2FA for this user

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then disables user account (can not login, can not receive messages)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"name\": \"Updated user name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id/logout", "title": "Log out User", "name": "PutUserLogout", "group": "Users", "description": "

This method logs out all user sessions in IMAP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "reason", "description": "

Message to be shown to connected IMAP client

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/logout \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reason\": \"Logout requested from API\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/password/reset", "title": "Reset password for an User", "name": "ResetUserPassword", "group": "Users", "description": "

This method generates a new temporary password for an User. Additionally it removes all two-factor authentication settings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "validAfter", "description": "

Allow using the generated password not earlier than provided time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "description": "

Temporary password

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"password\": \"temporarypass\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96/password/reset \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" } ] }); diff --git a/docs/api_data.json b/docs/api_data.json index 3dbc774..c089507 100644 --- a/docs/api_data.json +++ b/docs/api_data.json @@ -1 +1 @@ -[ { "type": "delete", "url": "/addresses/forwarded/:address", "title": "Delete a forwarded Address", "name": "DeleteForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/addresses/:address", "title": "Delete an Address", "name": "DeleteUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Trying to delete main address. Set a new main address first\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/resolve/:address", "title": "Get Address info", "name": "GetAddressInfo", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address or e-mail address string

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the user if the address belongs to an User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets if this is a Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage for Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "User-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d771bb\"\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" }, { "title": "Forwarded-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"autoreply\": {\n \"status\": false\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/resolve/k%C3%A4ru%40j%C3%B5geva.ee", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses", "title": "List registered Addresses", "name": "GetAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of an address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The Address must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The Address must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.user", "description": "

User ID this address belongs to if this is an User address

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

If true then it is a forwarded address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d790e7a\"\n },\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"forwarded\": true\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/forwarded/:address", "title": "Request forwarded Addresses information", "name": "GetForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses/:address", "title": "Request Addresses information", "name": "GetUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses", "title": "List registered Addresses for an User", "name": "GetUserAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/addresses/forwarded", "title": "Create new forwarded Address", "name": "PostForwardedAddress", "group": "Addresses", "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)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This email address already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/addresses/forwarded \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\",\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"forwards\": 500\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/users/:user/addresses", "title": "Create new Address", "name": "PostUserAddress", "group": "Addresses", "description": "

Add a new email address for an 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 and username@* catches all emails to these domains or users without a registered destination (requires allowWildcard argument)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "main", "defaultValue": "false", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/addresses \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/forwarded/:address", "title": "Update forwarded Address information", "name": "PutForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/forwarded/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"targets\": [\n \"some.other.address@example.com\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/renameDomain", "title": "Rename domain in addresses", "name": "PutRenameDomain", "group": "Addresses", "description": "

Renames domain names for addresses, DKIM keys and Domain Aliases

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "oldDomain", "description": "

Old Domain Name

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "newDomain", "description": "

New Domain Name

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to rename domain\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/renameDomain \\\n-H 'Content-type: application/json' \\\n-d '{\n \"oldDomain\": \"example.com\",\n \"newDomain\": \"blurdybloop.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/users/:user/addresses/:address", "title": "Update Address information", "name": "PutUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address if you want to rename existing address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/addresses/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"main\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/asps/:asp", "title": "Delete an Application Password", "name": "DeleteASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps/:asp", "title": "Request ASP information", "name": "GetASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Specific Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps", "title": "List Application Passwords", "name": "GetASPs", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "showAll", "defaultValue": "false", "description": "

If not true then skips entries with a TTL set

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "post", "url": "/users/:user/asps", "title": "Create new Application Password", "name": "PostASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "scopes", "description": "

List of scopes this Password applies to. Special scope "*" indicates that this password can be used for any scope except "master"

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "generateMobileconfig", "description": "

If true then result contains a mobileconfig formatted file with account config

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "ttl", "description": "

TTL in seconds for this password. Every time password is used, TTL is reset to this value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "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"

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mobileconfig", "description": "

Base64 encoded mobileconfig file. Generated profile file should be sent to the client with Content-Type value of application/x-apple-aspen-config.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"password\": \"rflhmllyegblyybd\",\n \"mobileconfig\": \"MIIQBgYJKoZIhvcNAQcCoIIP9...\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/asps \\\n-H 'Content-type: application/json' \\\n-d '{\n \"description\": \"Thunderbird\",\n \"scopes\": [\"imap\", \"smtp\"],\n \"generateMobileconfig\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/archived/messages", "title": "List archived messages", "name": "GetArchivedMessages", "group": "Archive", "description": "

Archive contains all recently deleted messages besides Drafts etc.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Message (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a13e54454869460e58\",\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/messages/:message/restore", "title": "Restore archived Message", "name": "RestoreMessage", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the target Mailbox. If not set then original mailbox is used.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

Maibox ID the message was moved to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

New ID for the Message

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": 4\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages/59fc66a13e54454869460e58/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/restore", "title": "Restore archived messages", "name": "RestoreMessages", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "start", "description": "

Datestring

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "end", "description": "

Datestring

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"start\": \"2018-10-01T00:00:00.000Z\",\n \"end\": \"2018-10-08T23:59:59.999Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "get", "url": "/users/:user/authlog", "title": "List authentication Events", "name": "GetAuthlog", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action", "description": "

Limit listing only to values with specific action value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "filterIp", "description": "

Limit listing only to values with specific IP address

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"action\": \"account created\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog?action=account+created\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "get", "url": "/users/:user/authlog/:event", "title": "Request Event information", "name": "GetAuthlogEvent", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "event", "description": "

ID of the Event

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog/59fc66a03e54454869460e4d\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "post", "url": "/authenticate", "title": "Authenticate an User", "name": "PostAuth", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username or E-mail address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "protocol", "description": "

Application identifier for security logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "scope", "defaultValue": "master", "description": "

Required scope. One of master, imap, smtp, pop3

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "token", "defaultValue": "false", "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".

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "scope", "description": "

The scope this authentication is valid for

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "require2fa", "description": "

List of enabled 2FA mechanisms

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "requirePasswordChange", "description": "

Indicates if account hassword has been reset and should be replaced

" }, { "group": "Success 200", "type": "String", "optional": true, "field": "token", "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.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a12914c350c183bd0d331f0\",\n \"username\": \"myuser\",\n \"scope\": \"master\",\n \"require2fa\": [\n \"totp\"\n ],\n \"requirePasswordChange\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "optional": true, "field": "code", "description": "

Error code

" }, { "group": "Error 4xx", "optional": true, "field": "id", "description": "

User ID if the user exists

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Authentication failed. Invalid scope\",\n \"code\": \"InvalidAuthScope\",\n \"id\": \"5b22283d45e8d47572eb0381\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/authenticate \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"secretpass\",\n \"scope\": \"master\",\n \"token\": \"true\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "delete", "url": "/users/:user/autoreply", "title": "Delete Autoreply information", "name": "DeleteAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "get", "url": "/users/:user/autoreply", "title": "Request Autoreply information", "name": "GetAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "start", "description": "

Datestring of the start of the autoreply

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "end", "description": "

Datestring of the end of the autoreply

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"status\": true,\n \"subject\": \"\",\n \"text\": \"Away from office until Dec.19\",\n \"html\": \"\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "put", "url": "/users/:user/autoreply", "title": "Update Autoreply information", "name": "PutAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "start", "description": "

Datestring of the start of the autoreply or boolean false to disable start checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "end", "description": "

Datestring of the end of the autoreply or boolean false to disable end checks

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/autoreply \\\n-H 'Content-type: application/json' \\\n-d '{\n \"status\": true,\n \"text\": \"Away from office until Dec.19\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "delete", "url": "/dkim/:dkim", "title": "Delete a DKIM key", "name": "DeleteDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/dkim/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim", "title": "List registered DKIM keys", "name": "GetDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/:dkim", "title": "Request DKIM information", "name": "GetDkimKey", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "post", "url": "/dkim", "title": "Create or update DKIM key for domain", "name": "PostDkim", "group": "DKIM", "description": "

Add a new DKIM key for a Domain or update existing one. There can be single DKIM key registered for each domain name.

", "header": { "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "selector", "description": "

Selector for the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "description", "description": "

Key description

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "privateKey", "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.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/dkim \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"privateKey\": \"-----BEGIN RSA PRIVATE KEY-----...\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/resolve/:domain", "title": "Resolve ID for a DKIM domain", "name": "ResolveDKIM", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

DKIM domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

DKIM unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This domain does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "delete", "url": "/domainaliases/:alias", "title": "Delete an Alias", "name": "DeleteDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases", "title": "List registered Domain Aliases", "name": "GetAliases", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain Alias or Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.alias", "description": "

Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this alias applies to

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/:alias", "title": "Request Alias information", "name": "GetDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

Alias target

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the alias was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "post", "url": "/domainaliases", "title": "Create new Domain Alias", "name": "PostDomainAlias", "group": "DomainAliases", "description": "

Add a new Alias for a Domain. This allows to accept mail on username@domain and username@alias

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Domain Alias

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

Domain name this Alias applies to

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Domain Alias

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/domainaliases \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"alias\": \"example.org\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/resolve/:alias", "title": "Resolve ID for a domain aias", "name": "ResolveDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Alias unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "delete", "url": "/users/:user/filters/:filter", "title": "Delete a Filter", "name": "DeleteFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters/:filter", "title": "Request Filter information", "name": "GetFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the Filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the Filter

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "query.size", "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

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "action.targets", "description": "

A list of email addresses / HTTP URLs to forward the message to

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"created\": \"2017-11-27T13:11:00.835Z\",\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n },\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters", "title": "List Filters for an User", "name": "GetFilters", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Filter description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Filter ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the filter was created

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.query", "description": "

A list of query descriptions

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.action", "description": "

A list of action descriptions

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"query\": [\n [\n \"from\",\n \"(Mäger)\"\n ]\n ],\n \"action\": [\n [\n \"mark as read\"\n ]\n ],\n \"disabled\": false,\n \"created\": \"2017-11-27T13:11:00.835Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "post", "url": "/users/:user/filters", "title": "Create new Filter", "name": "PostFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters \\\n-H 'Content-type: application/json' \\\n-d '{\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "put", "url": "/users/:user/filters/:filter", "title": "Update Filter information", "name": "PutFilter", "group": "Filters", "description": "

This method updates Filter data. To unset a value, use empty strings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c \\\n-H 'Content-type: application/json' \\\n-d '{\n \"action\": {\n \"seen\": \"\",\n \"flag\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox", "title": "Delete a Mailbox", "name": "DeleteMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID. Special use folders and INBOX can not be deleted

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox deletion failed with code CANNOT\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox", "title": "Request Mailbox information", "name": "GetMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": " HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This mailbox does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes", "title": "List Mailboxes for an User", "name": "GetMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "specialUse", "defaultValue": "false", "description": "

Should the response include only folders with specialUse flag set.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "counters", "defaultValue": "false", "description": "

Should the response include counters (total + unseen). Counters come with some overhead.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "sizes", "defaultValue": "false", "description": "

Should the response include mailbox size in bytes. Size numbers come with a lot of overhead as an aggregated query is ran.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

List of user mailboxes

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n },\n {\n \"id\": \"59fc66a03e54454869460e47\",\n \"name\": \"Sent Mail\",\n \"path\": \"Sent Mail\",\n \"specialUse\": \"\\\\Sent\",\n \"modifyIndex\": 145,\n \"subscribed\": true,\n \"total\": 15,\n \"unseen\": 0\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?counters=true", "type": "curl" }, { "title": "Special Use Only", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?specialUse=true", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "post", "url": "/users/:user/mailboxes", "title": "Create new Mailbox", "name": "PostMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "defaultValue": "0", "description": "

Retention policy for the created Mailbox. Milliseconds after a message added to mailbox expires. Set to 0 to disable.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d2816153888cdcd62a715\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox creation failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"First Level/Second 😎 Level/Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox", "title": "Update Mailbox information", "name": "PutMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "path", "description": "

Full path of the mailbox, use this to rename an existing Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Retention policy for the Mailbox. Changing retention value only affects messages added to this folder after the change

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "subscribed", "description": "

Change Mailbox subscription state

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox update failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"Updated Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Delete a Message", "name": "DeleteMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Delete Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Delete a Message:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/2\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/forward", "title": "Forward stored Message", "name": "ForwardStoredMessage", "group": "Messages", "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 an user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "target", "description": "

Number of original forwarding target

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "addresses", "description": "

An array of additional forward targets

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "forwarded", "description": "

Information about forwarding targets

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.seq", "description": "

Sequence ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.type", "description": "

Target type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.value", "description": "

Target address

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"1600d2f36470008b72\",\n \"forwarded\": [\n {\n \"seq\": \"001\",\n \"type\": \"mail\",\n \"value\": \"andris@ethereal.email\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Forward a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/forward\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"addresses\": [\n \"andris@ethereal.email\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Request Message information", "name": "GetMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "markAsSeen", "defaultValue": "false", "description": "

If true then marks message as seen

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "envelope", "description": "

SMTP envelope (if available)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.from", "description": "

Address from MAIL FROM

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "envelope.rcpt", "description": "

Array of addresses from RCPT TO (should have just one normally)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.value", "description": "

RCPT TO address as provided by SMTP client

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.formatted", "description": "

Normalized RCPT address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "from", "description": "

From: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "to", "description": "

To: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "cc", "description": "

Cc: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "messageId", "description": "

Message-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "date", "description": "

Datestring of message header

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "list", "description": "

If set then this message is from a mailing list

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.id", "description": "

Value from List-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.unsubscribe", "description": "

Value from List-Unsubscribe header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "expires", "description": "

Datestring, if set then indicates the time after this message is automatically deleted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "seen", "description": "

Does this message have a \\Seen flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "deleted", "description": "

Does this message have a \\Deleted flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "draft", "description": "

Does this message have a \\Draft flag

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "html", "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

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext content of the message

" }, { "group": "Success 200", "type": "Object[]", "optional": true, "field": "attachments", "description": "

List of attachments for this message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.id", "description": "

Attachment ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.filename", "description": "

Filename of the attachment

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.contentType", "description": "

MIME type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.disposition", "description": "

Attachment disposition

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.transferEncoding", "description": "

Which transfer encoding was used (actual content when fetching attachments is not encoded)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "attachments.related", "description": "

Was this attachment found from a multipart/related node. This usually means that this is an embedded image

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "attachments.sizeKb", "description": "

Approximate size of the attachment in kilobytes

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "verificationResults", "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.

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls", "description": "

TLS information. Value is false if TLS was not used

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.name", "description": "

Cipher name, eg "ECDHE-RSA-AES128-GCM-SHA256"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.version", "description": "

TLS version, eg "TLSv1/SSLv3"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.spf", "description": "

Domain name (either MFROM or HELO) of verified SPF or false if no SPF match was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.dkim", "description": "

Domain name of verified DKIM signature or false if no valid signature was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType.params", "description": "

An object with Content-Type params as key-value pairs

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this message

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "reference", "description": "

Referenced message info

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"user\": \"59fc66a03e54454869460e45\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"to\": [\n {\n \"address\": \"bob@domain.dom\",\n \"name\": \"\"\n }\n ],\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"messageId\": \"<1066976914.4721.5.camel@localhost>\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"html\": [\n \"

Welcome to Ryan Finnie's MIME torture test.

\",\n \"

While a message/rfc822 part inside another message/rfc822 part in a
message isn't too strange, 200 iterations of that would be.

\"\n ],\n \"text\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed\\nto introduce a couple of the newer features of MIME-aware MUA\",\n \"attachments\": [\n {\n \"id\": \"ATT00004\",\n \"filename\": \"foo.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n },\n {\n \"id\": \"ATT00007\",\n \"filename\": \"blah1.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n }\n ],\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n },\n \"metaData\": \"{}\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/attachments/:attachment", "title": "Download Attachment", "name": "GetMessageAttachment", "group": "Messages", "description": "

This method returns attachment file contents in binary form

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachment", "description": "

ID of the Attachment

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This attachment does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/attachments/ATT00002\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: image/png\n\n<89>PNG...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/message.eml", "title": "Get Message source", "name": "GetMessageSource", "group": "Messages", "description": "

This method returns the full RFC822 formatted source of the stored message

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1/message.eml\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: message/rfc822\n\nSubject: Ryan Finnie's MIME Torture Test v1.0\nFrom: Ryan Finnie \nTo: bob@domain.dom\nContent-Type: multipart/mixed; boundary=\"=-qYxqvD9rbH0PNeExagh1\"\n...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "List messages in a Mailbox", "name": "GetMessages", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.answered", "description": "

Does this message have a \\Answered flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

Does this message have a $Forwarded flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"answered\": false,\n \"forwarded\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/search", "title": "Search for messages", "name": "GetMessagesSearch", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "thread", "description": "

Thread ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "datestart", "description": "

Datestring for the earliest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "dateend", "description": "

Datestring for the latest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "from", "description": "

Partial match for the From: header line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to", "description": "

Partial match for the To: and Cc: header lines

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Partial match for the Subject: header line

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "attachments", "description": "

If true, then matches only messages with attachments

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "description": "

If true, then matches only messages with \\Flagged flags

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "searchable", "description": "

If true, then matches messages not in Junk or Trash

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.url", "description": "

Relative API url for fetching message contents

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"query\": \"Ryan\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/search?query=Ryan\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Update Message information", "name": "PutMessage", "group": "Messages", "description": "

This method updates message flags and also allows to move messages to a different mailbox

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "message", "description": "

Message ID values. Either comma separated numbers (1,2,3) or colon separated range (3:15)

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "moveTo", "description": "

ID of the target Mailbox if you want to move messages

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "seen", "description": "

State of the \\Seen flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "flagged", "description": "

State of the \\Flagged flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "draft", "description": "

State of the \\Draft flag

" }, { "group": "Parameter", "type": "Datestring", "optional": false, "field": "expires", "description": "

Either expiration date or false to turn of autoexpiration

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "id", "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

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "updated", "description": "

If messages were not moved, then indicates the number of updated messages

" } ] }, "examples": [ { "title": "Update Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"updated\": 2\n}", "type": "json" }, { "title": "Move Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": [\n [1,24],\n [2,25]\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Mark messages as unseen:", "content": "curl -i -XPUT \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"message\": \"1,2,3\",\n \"seen\": false\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/submit", "title": "Submit Draft for delivery", "name": "SubmitStoredMessage", "group": "Messages", "description": "

This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the draft was moved to (usually Sent mail)

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" } ] }, "examples": [ { "title": "Submit Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"queueId\": \"1682f5a712f000dfb6\",\n \"message\": {\n \"id\": 3,\n \"mailbox\": \"5c279b4e17abae166446f968\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Submit a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Upload Message", "name": "UploadMessage", "group": "Messages", "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 strucutred data fields, then do not use the raw property.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "unseen", "defaultValue": "false", "description": "

Is the message unseen or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "draft", "defaultValue": "false", "description": "

Is the message a draft or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "defaultValue": "false", "description": "

Is the message flagged or not

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "raw", "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

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automaticall y

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "reference.attachments", "defaultValue": "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

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Message information

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored into

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 2,\n \"mailbox\": \"5a2f9ca57308fc3a6f5f811e\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Upload a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: message/rfc822' \\\n-d 'From: sender@example.com\nTo: recipient@example.com\nSubject: hello world!\n\nExample message'", "type": "curl" }, { "title": "Upload a Message Structure:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"from\": {\n \"name\": \"sender name\",\n \"address\": \"sender@example.com\"\n },\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/submit", "title": "Submit a Message for Delivery", "name": "PostSubmit", "group": "Submission", "description": "

Use this method to send emails from an user account

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

Mailbox ID where to upload the message. If not set then message is uploaded to Sent Mail folder.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadOnly", "defaultValue": "false", "description": "

If true then generated message is not added to the sending queue

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "isDraft", "defaultValue": "false", "description": "

If true then treats this message as draft (should be used with uploadOnly=true)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sendTime", "description": "

Datestring for delivery if message should be sent some later time

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope", "description": "

SMTP envelope. If not provided then resolved either from message headers or from referenced message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope.from", "description": "

Sender information. If not set then it is resolved to User's default address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.from.address", "description": "

Sender address. If this is not listed as allowed address for the sending User then it is replaced with the User's default address

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "envelope.to", "description": "

Recipients information

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.to.address", "description": "

Recipient address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "meta", "description": "

Custom metainfo for the message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.queueId", "description": "

Queue ID in MTA

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 16,\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"queueId\": \"1600798505b000a25f\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "type": "String", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "type": "String", "optional": false, "field": "code", "description": "

Reason for the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"User account is disabled\",\n \"code\": \"ERRDISABLEDUSER\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "# Sender info is derived from account settings\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" }, { "title": "Reply to All", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"id\": 15,\n \"action\": \"replyAll\"\n },\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" }, { "title": "Upload only", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/5a2fe496ce76ede84f177ec3/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"5a2fe496ce76ede84f177ec4\",\n \"id\": 1,\n \"action\": \"replyAll\"\n },\n \"uploadOnly\": true,\n \"mailbox\": \"5a33b45acf482d3219955bc4\",\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/submit.js", "groupTitle": "Submission" }, { "type": "post", "url": "/users/:user/2fa/totp/check", "title": "Validate TOTP Token", "name": "CheckTotp2FA", "group": "TwoFactorAuth", "description": "

This method checks if a TOTP token provided by an User is valid for authentication

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to validate TOTP\"\n \"code\": \"InvalidToken\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/check \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa", "title": "Disable 2FA", "name": "Disable2FA", "group": "TwoFactorAuth", "description": "

This method disables all 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/custom", "title": "Disable custom 2FA for an user", "name": "DisableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables custom 2FA. If it was the only 2FA set up, then account password for IMAP/POP3/SMTP gets enabled again

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/totp", "title": "Disable TOTP auth", "name": "DisableTotp2FA", "group": "TwoFactorAuth", "description": "

This method disables TOTP for an user. Does not affect other 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "put", "url": "/users/:user/2fa/custom", "title": "Enable custom 2FA for an user", "name": "EnableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables account password for IMAP/POP3/SMTP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/enable", "title": "Enable TOTP seed", "name": "EnableTotp2FA", "group": "TwoFactorAuth", "description": "

This method enables TOTP for an user by verifying the seed value generated from 2fa/totp/setup

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number that matches seed value from 2fa/totp/setup

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/enable \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/setup", "title": "Generate TOTP seed", "name": "SetupTotp2FA", "group": "TwoFactorAuth", "description": "

This method generates TOTP seed and QR code for 2FA. User needs to verify the seed value using 2fa/totp/enable endpoint

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "label", "description": "

Label text for QR code (defaults to username)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "issuer", "description": "

Description text for QR code (defaults to "WildDuck")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "seed", "description": "

Generated TOTP seed value

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "qrcode", "description": "

Base64 encoded QR code

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"seed\": \"secretseed\",\n \"qrcode\": \"base64-encoded-image\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/setup \\\n-H 'Content-type: application/json' \\\n-d '{\n \"label\": \"user@example.com\",\n \"issuer\": \"My Awesome Web Service\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:id", "title": "Delete an User", "name": "DeleteUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0?ip=127.0.0.1", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id/updates", "title": "Open change stream", "name": "GetUpdates", "group": "Users", "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

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "String", "optional": false, "field": "command", "description": "

Indicates data event type

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: text/event-stream\n\ndata: {\ndata: \"command\": \"CREATE\",\ndata: \"mailbox\": \"5a1d3061153888cdcd62a719\",\ndata: \"path\": \"First Level/Second 😎 Level/Folder Name\"\ndata: }", "type": "text" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "var stream = new EventSource('/users/59fc66a03e54454869460e45/updates');\nstream.onmessage = function(e) {\n console.log(JSON.parse(e.data));\n};", "type": "javascript" } ], "version": "0.0.0", "filename": "lib/api/updates.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id", "title": "Request User information", "name": "GetUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "retention", "description": "

Default retention time in ms. false if not enabled

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "enabled2fa", "description": "

List of enabled 2FA methods

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "keyInfo", "description": "

Information about public key or false if key is not available

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.name", "description": "

Name listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.address", "description": "

E-mail address listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.fingerprint", "description": "

Fingerprint of the public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this user

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.recipients", "description": "

Sending quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.allowed", "description": "

How many messages per 24 hours can be sent

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.used", "description": "

How many messages are sent during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hours can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.received", "description": "

Receiving quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.allowed", "description": "

How many messages per 1 hour can be received

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.used", "description": "

How many messages are received during current 1 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.ttl", "description": "

Time until the end of current 1 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapUpload", "description": "

IMAP upload quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.allowed", "description": "

How many bytes per 24 hours can be uploaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.used", "description": "

How many bytes are uploaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapDownload", "description": "

IMAP download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.allowed", "description": "

How many bytes per 24 hours can be downloaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.pop3Download", "description": "

POP3 download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.allowed", "description": "

How many bytes per 24 hours can be downloaded via POP3. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.allowed", "description": "

How many parallel IMAP connections are permitted

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.used", "description": "

How many parallel IMAP connections are currenlty in use

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

Disabled scopes for this user

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\",\n \"username\": \"testuser01\",\n \"name\": null,\n \"address\": \"testuser01@example.com\",\n \"retention\": false,\n \"enabled2fa\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"pubKey\": \"\",\n \"keyInfo\": false,\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"limits\": {\n \"quota\": {\n \"allowed\": 107374182400,\n \"used\": 289838\n },\n \"recipients\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n },\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"tags\": [\"green\", \"blue\"],\n \"disabledScopes\": [\"pop3\"],\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/resolve/:username", "title": "Resolve ID for an username", "name": "GetUsername", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "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")

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/resolve/testuser", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users", "title": "List registered Users", "name": "GetUsers", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of username or default email address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The User must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The User must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

User listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the User'

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59cb948ad80a820b68f05230\",\n \"username\": \"myuser\",\n \"name\": \"John Doe\",\n \"address\": \"john@example.com\",\n \"tags\": [],\n \"forward\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"quota\": {\n \"allowed\": 1073741824,\n \"used\": 17799833\n },\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users", "title": "Create new user", "name": "PostUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username of the User. Dots are allowed but informational only ("user.name" is the same as "username").

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

Default email address for the User (autogenerated if not set)

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "emptyAddress", "description": "

If true then do not autogenerate missing email address for the User. Only needed if you want to create an user account that does not have any email address associated

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "requirePasswordChange", "description": "

If true then requires the user to change password, useful if password for the account was autogenerated

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "addTagsToAddress", "description": "

If true then autogenerated address gets the same tags as the user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "defaultValue": "50", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "mailboxes", "description": "

Optional names for special mailboxes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.sent", "defaultValue": "Sent Mail", "description": "

Path of Sent Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.junk", "defaultValue": "Junk", "description": "

Path of spam folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.drafts", "defaultValue": "Drafts", "description": "

Path of drafts folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.trash", "defaultValue": "Trash", "description": "

Path of trash folder

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created User

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1bda70bfbd1442cd96c6f0\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"address\": \"john.doe@example.com\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" }, { "title": "Example address:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"john.doe@example.com\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/quota/reset", "title": "Recalculate User quota", "name": "PostUserQuota", "group": "Users", "description": "

This method recalculates quota usage for an 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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "storageUsed", "description": "

Calculated quota usage for the user

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"storageUsed\": 1234567\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/quota/reset", "title": "Recalculate Quota for all Users", "name": "PostUserQuotaAll", "group": "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to process request\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id", "title": "Update User information", "name": "PutUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "existingPassword", "description": "

If provided then validates against account password before applying any changes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "password", "description": "

New password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disable2fa", "description": "

If true, then disables 2FA for this user

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then disables user account (can not login, can not receive messages)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"name\": \"Updated user name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id/logout", "title": "Log out User", "name": "PutUserLogout", "group": "Users", "description": "

This method logs out all user sessions in IMAP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "reason", "description": "

Message to be shown to connected IMAP client

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/logout \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reason\": \"Logout requested from API\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/password/reset", "title": "Reset password for an User", "name": "ResetUserPassword", "group": "Users", "description": "

This method generates a new temporary password for an User. Additionally it removes all two-factor authentication settings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "validAfter", "description": "

Allow using the generated password not earlier than provided time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "description": "

Temporary password

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"password\": \"temporarypass\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96/password/reset \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" } ] +[ { "type": "delete", "url": "/addresses/forwarded/:address", "title": "Delete a forwarded Address", "name": "DeleteForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/addresses/:address", "title": "Delete an Address", "name": "DeleteUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Trying to delete main address. Set a new main address first\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/resolve/:address", "title": "Get Address info", "name": "GetAddressInfo", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address or e-mail address string

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the user if the address belongs to an User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets if this is a Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage for Forwarded address

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "User-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d771bb\"\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" }, { "title": "Forwarded-Address:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"autoreply\": {\n \"status\": false\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/resolve/k%C3%A4ru%40j%C3%B5geva.ee", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses", "title": "List registered Addresses", "name": "GetAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of an address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The Address must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The Address must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.user", "description": "

User ID this address belongs to if this is an User address

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

If true then it is a forwarded address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"user\": \"59ef21aef255ed1d9d790e7a\"\n },\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"forwarded\": true\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/addresses/forwarded/:address", "title": "Request forwarded Addresses information", "name": "GetForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "autoreply.html", "description": "

Autoreply HTML content

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"targets\": [\n \"my.other.address@example.com\"\n ],\n \"limits\": {\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/addresses/forwarded/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses/:address", "title": "Request Addresses information", "name": "GetUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the Address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the address was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "get", "url": "/users/:user/addresses", "title": "List registered Addresses for an User", "name": "GetUserAddresses", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Address listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Identity name

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

E-mail address string

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the address was created

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"address\": \"user@example.com\",\n \"main\": true,\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59ef21aef255ed1d9d790e7a/addresses", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/addresses/forwarded", "title": "Create new forwarded Address", "name": "PostForwardedAddress", "group": "Addresses", "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)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This email address already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/addresses/forwarded \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\",\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"forwards\": 500\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "post", "url": "/users/:user/addresses", "title": "Create new Address", "name": "PostUserAddress", "group": "Addresses", "description": "

Add a new email address for an 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 and username@* catches all emails to these domains or users without a registered destination (requires allowWildcard argument)

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

E-mail Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "main", "defaultValue": "false", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowWildcard", "defaultValue": "false", "description": "

If true then address value can be in the form of *@example.com, otherwise using * is not allowed

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/addresses \\\n-H 'Content-type: application/json' \\\n-d '{\n \"address\": \"my.new.address@example.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/forwarded/:address", "title": "Update forwarded Address information", "name": "PutForwardedAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

Daily allowed forwarding count for this address

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "autoreply", "description": "

Autoreply information

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "autoreply.status", "description": "

If true, then autoreply is enabled for this address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.start", "description": "

Either a date string or boolean false to disable start time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.end", "description": "

Either a date string or boolean false to disable end time checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.subject", "description": "

Autoreply subject line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.text", "description": "

Autoreply plaintext content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "autoreply.html", "description": "

Autoreply HTML content

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This address does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/forwarded/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"targets\": [\n \"some.other.address@example.com\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/addresses/renameDomain", "title": "Rename domain in addresses", "name": "PutRenameDomain", "group": "Addresses", "description": "

Renames domain names for addresses, DKIM keys and Domain Aliases

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "oldDomain", "description": "

Old Domain Name

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "newDomain", "description": "

New Domain Name

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to rename domain\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/addresses/renameDomain \\\n-H 'Content-type: application/json' \\\n-d '{\n \"oldDomain\": \"example.com\",\n \"newDomain\": \"blurdybloop.com\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "put", "url": "/users/:user/addresses/:address", "title": "Update Address information", "name": "PutUserAddress", "group": "Addresses", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

ID of the Address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Identity name

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

New address if you want to rename existing address. Only affects normal addresses, special addresses that include * can not be changed

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "main", "description": "

Indicates if this is the default address for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this address

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/addresses/5a1d4541153888cdcd62a71b \\\n-H 'Content-type: application/json' \\\n-d '{\n \"main\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/addresses.js", "groupTitle": "Addresses" }, { "type": "delete", "url": "/users/:user/asps/:asp", "title": "Delete an Application Password", "name": "DeleteASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps/:asp", "title": "Request ASP information", "name": "GetASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "asp", "description": "

ID of the Application Specific Password

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps/5a1d6dd776e56b6d97e5dd48\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/asps", "title": "List Application Passwords", "name": "GetASPs", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "showAll", "defaultValue": "false", "description": "

If not true then skips entries with a TTL set

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Description

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.scopes", "description": "

Allowed scopes for the Application Password

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.lastUse", "description": "

Information about last use

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.time", "description": "

Datestring of last use or false if password has not been used

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.lastUse.event", "description": "

Event ID of the security log for the last authentication

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"description\": \"Thunderbird\",\n \"scopes\": [\n \"imap\",\n \"smtp\"\n ],\n \"lastUse\": {\n \"time\": \"2018-06-21T16:51:53.807Z\",\n \"event\": \"5b2bd7a9d0ba2509deb88f40\"\n },\n \"created\": \"2017-11-28T14:08:23.520Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/asps\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "post", "url": "/users/:user/asps", "title": "Create new Application Password", "name": "PostASP", "group": "ApplicationPasswords", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "description", "description": "

Description

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "scopes", "description": "

List of scopes this Password applies to. Special scope "*" indicates that this password can be used for any scope except "master"

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "generateMobileconfig", "description": "

If true then result contains a mobileconfig formatted file with account config

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "ttl", "description": "

TTL in seconds for this password. Every time password is used, TTL is reset to this value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Application Password

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "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"

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mobileconfig", "description": "

Base64 encoded mobileconfig file. Generated profile file should be sent to the client with Content-Type value of application/x-apple-aspen-config.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d6dd776e56b6d97e5dd48\",\n \"password\": \"rflhmllyegblyybd\",\n \"mobileconfig\": \"MIIQBgYJKoZIhvcNAQcCoIIP9...\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/asps \\\n-H 'Content-type: application/json' \\\n-d '{\n \"description\": \"Thunderbird\",\n \"scopes\": [\"imap\", \"smtp\"],\n \"generateMobileconfig\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/asps.js", "groupTitle": "ApplicationPasswords" }, { "type": "get", "url": "/users/:user/archived/messages", "title": "List archived messages", "name": "GetArchivedMessages", "group": "Archive", "description": "

Archive contains all recently deleted messages besides Drafts etc.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Message (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a13e54454869460e58\",\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/messages/:message/restore", "title": "Restore archived Message", "name": "RestoreMessage", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the target Mailbox. If not set then original mailbox is used.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

Maibox ID the message was moved to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

New ID for the Message

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": 4\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/messages/59fc66a13e54454869460e58/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "post", "url": "/users/:user/archived/restore", "title": "Restore archived messages", "name": "RestoreMessages", "group": "Archive", "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "start", "description": "

Datestring

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "end", "description": "

Datestring

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Restore Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Restore a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/archived/restore\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"start\": \"2018-10-01T00:00:00.000Z\",\n \"end\": \"2018-10-08T23:59:59.999Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Archive" }, { "type": "get", "url": "/users/:user/authlog", "title": "List authentication Events", "name": "GetAuthlog", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action", "description": "

Limit listing only to values with specific action value

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "filterIp", "description": "

Limit listing only to values with specific IP address

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Event listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"action\": \"account created\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog?action=account+created\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "get", "url": "/users/:user/authlog/:event", "title": "Request Event information", "name": "GetAuthlogEvent", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "event", "description": "

ID of the Event

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action", "description": "

Action identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "result", "description": "

Did the action succeed

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "sess", "description": "

Session identifier

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "ip", "description": "

IP address of the Event

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the Event time

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"id\": \"59fc66a03e54454869460e4d\",\n \"action\": \"account created\",\n \"result\": \"success\",\n \"sess\": null,\n \"ip\": null,\n \"created\": \"2017-11-03T12:52:48.792Z\",\n \"expires\": \"2017-12-03T12:52:48.792Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/authlog/59fc66a03e54454869460e4d\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "post", "url": "/authenticate", "title": "Authenticate an User", "name": "PostAuth", "group": "Authentication", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username or E-mail address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "protocol", "description": "

Application identifier for security logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "scope", "defaultValue": "master", "description": "

Required scope. One of master, imap, smtp, pop3

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "token", "defaultValue": "false", "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".

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of authenticated User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "scope", "description": "

The scope this authentication is valid for

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "require2fa", "description": "

List of enabled 2FA mechanisms

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "requirePasswordChange", "description": "

Indicates if account hassword has been reset and should be replaced

" }, { "group": "Success 200", "type": "String", "optional": true, "field": "token", "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.

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a12914c350c183bd0d331f0\",\n \"username\": \"myuser\",\n \"scope\": \"master\",\n \"require2fa\": [\n \"totp\"\n ],\n \"requirePasswordChange\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "optional": true, "field": "code", "description": "

Error code

" }, { "group": "Error 4xx", "optional": true, "field": "id", "description": "

User ID if the user exists

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Authentication failed. Invalid scope\",\n \"code\": \"InvalidAuthScope\",\n \"id\": \"5b22283d45e8d47572eb0381\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/authenticate \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"secretpass\",\n \"scope\": \"master\",\n \"token\": \"true\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/auth.js", "groupTitle": "Authentication" }, { "type": "delete", "url": "/users/:user/autoreply", "title": "Delete Autoreply information", "name": "DeleteAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "get", "url": "/users/:user/autoreply", "title": "Request Autoreply information", "name": "GetAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "start", "description": "

Datestring of the start of the autoreply

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "end", "description": "

Datestring of the end of the autoreply

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"status\": true,\n \"subject\": \"\",\n \"text\": \"Away from office until Dec.19\",\n \"html\": \"\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/autoreply", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "put", "url": "/users/:user/autoreply", "title": "Update Autoreply information", "name": "PutAutoreply", "group": "Autoreplies", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "status", "description": "

Is the autoreply enabled (true) or not (false)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name that is used for the From: header in autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Subject line for the autoreply. If empty then uses subject of the original message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext formatted content of the autoreply message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "start", "description": "

Datestring of the start of the autoreply or boolean false to disable start checks

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "end", "description": "

Datestring of the end of the autoreply or boolean false to disable end checks

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/autoreply \\\n-H 'Content-type: application/json' \\\n-d '{\n \"status\": true,\n \"text\": \"Away from office until Dec.19\",\n \"start\": \"2017-11-15T00:00:00.000Z\",\n \"end\": \"2017-12-19T00:00:00.000Z\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/autoreply.js", "groupTitle": "Autoreplies" }, { "type": "delete", "url": "/dkim/:dkim", "title": "Delete a DKIM key", "name": "DeleteDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/dkim/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim", "title": "List registered DKIM keys", "name": "GetDkim", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/:dkim", "title": "Request DKIM information", "name": "GetDkimKey", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "dkim", "description": "

ID of the DKIM

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "post", "url": "/dkim", "title": "Create or update DKIM key for domain", "name": "PostDkim", "group": "DKIM", "description": "

Add a new DKIM key for a Domain or update existing one. There can be single DKIM key registered for each domain name.

", "header": { "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "selector", "description": "

Selector for the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "description", "description": "

Key description

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "privateKey", "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.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the DKIM

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

The domain this DKIM key applies to

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "selector", "description": "

DKIM selector

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "description", "description": "

Key description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "fingerprint", "description": "

Key fingerprint (SHA1)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "publicKey", "description": "

Public key in DNS format (no prefix/suffix, single line)

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "dnsTxt", "description": "

Value for DNS TXT entry

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.name", "description": "

Is the domain name of TXT

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "dnsTxt.value", "description": "

Is the value of TXT

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"fingerprint\": \"6a:aa:d7:ba:e4:99:b4:12:e0:f3:35:01:71:d4:f1:d6:b4:95:c4:f5\",\n \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0...\",\n \"dnsTxt\": {\n \"name\": \"dec20._domainkey.example.com\",\n \"value\": \"v=DKIM1;t=s;p=MIGfMA0...\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/dkim \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"selector\": \"oct17\",\n \"description\": \"Key for marketing emails\",\n \"privateKey\": \"-----BEGIN RSA PRIVATE KEY-----...\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "get", "url": "/dkim/resolve/:domain", "title": "Resolve ID for a DKIM domain", "name": "ResolveDKIM", "group": "DKIM", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

DKIM domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

DKIM unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This domain does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/dkim/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/dkim.js", "groupTitle": "DKIM" }, { "type": "delete", "url": "/domainaliases/:alias", "title": "Delete an Alias", "name": "DeleteDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases", "title": "List registered Domain Aliases", "name": "GetAliases", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a Domain Alias or Domain name

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Aliases listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.alias", "description": "

Domain Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.domain", "description": "

The domain this alias applies to

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/:alias", "title": "Request Alias information", "name": "GetDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

ID of the Alias

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Alias

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "domain", "description": "

Alias target

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "created", "description": "

Datestring of the time the alias was created

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e7a\",\n \"alias\": \"example.net\",\n \"domain\": \"example.com\",\n \"created\": \"2017-10-24T11:19:10.911Z\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This Alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/59ef21aef255ed1d9d790e7a", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "post", "url": "/domainaliases", "title": "Create new Domain Alias", "name": "PostDomainAlias", "group": "DomainAliases", "description": "

Add a new Alias for a Domain. This allows to accept mail on username@domain and username@alias

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Domain Alias

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "domain", "description": "

Domain name this Alias applies to

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID of the Domain Alias

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59ef21aef255ed1d9d790e81\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/domainaliases \\\n-H 'Content-type: application/json' \\\n-d '{\n \"domain\": \"example.com\",\n \"alias\": \"example.org\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "get", "url": "/domainaliases/resolve/:alias", "title": "Resolve ID for a domain aias", "name": "ResolveDomainAlias", "group": "DomainAliases", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "alias", "description": "

Alias domain

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Alias unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This alias does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/domainaliases/resolve/example.com", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/domainaliases.js", "groupTitle": "DomainAliases" }, { "type": "delete", "url": "/users/:user/filters/:filter", "title": "Delete a Filter", "name": "DeleteFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters/:filter", "title": "Request Filter information", "name": "GetFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the Filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the Filter

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "query.size", "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

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "action.targets", "description": "

A list of email addresses / HTTP URLs to forward the message to

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"created\": \"2017-11-27T13:11:00.835Z\",\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n },\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This filter does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "get", "url": "/users/:user/filters", "title": "List Filters for an User", "name": "GetFilters", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Filter description

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Filter ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the filter

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.created", "description": "

Datestring of the time the filter was created

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.query", "description": "

A list of query descriptions

" }, { "group": "Success 200", "type": "Array[]", "optional": false, "field": "results.action", "description": "

A list of action descriptions

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true, then this filter is ignored

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"5a1c0ee490a34c67e266931c\",\n \"query\": [\n [\n \"from\",\n \"(Mäger)\"\n ]\n ],\n \"action\": [\n [\n \"mark as read\"\n ]\n ],\n \"disabled\": false,\n \"created\": \"2017-11-27T13:11:00.835Z\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "post", "url": "/users/:user/filters", "title": "Create new Filter", "name": "PostFilter", "group": "Filters", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1c0ee490a34c67e266931c\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0/filters \\\n-H 'Content-type: application/json' \\\n-d '{\n \"query\": {\n \"from\": \"Mäger\"\n },\n \"action\": {\n \"seen\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "put", "url": "/users/:user/filters/:filter", "title": "Update Filter information", "name": "PutFilter", "group": "Filters", "description": "

This method updates Filter data. To unset a value, use empty strings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "filter", "description": "

Filters unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the Filter

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "query", "description": "

Rules that a message must match

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.from", "description": "

Partial match for the From: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.to", "description": "

Partial match for the To:/Cc: headers (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.subject", "description": "

Partial match for the Subject: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.listId", "description": "

Partial match for the List-ID: header (case insensitive)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query.text", "description": "

Fulltext search against message text

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "query.ha", "description": "

Does a message have to have an attachment or not

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "query.size", "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

" }, { "group": "Parameter", "type": "Object", "optional": false, "field": "action", "description": "

Action to take with a matching message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.seen", "description": "

If true then mark matching messages as Seen

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.flag", "description": "

If true then mark matching messages as Flagged

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.delete", "description": "

If true then do not store matching messages

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "action.spam", "description": "

If true then store matching messags to Junk Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "action.mailbox", "description": "

Mailbox ID to store matching messages to

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "action.targets", "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

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then this filter is ignored

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created Filter

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Empty filter query\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/filters/5a1c0ee490a34c67e266931c \\\n-H 'Content-type: application/json' \\\n-d '{\n \"action\": {\n \"seen\": \"\",\n \"flag\": true\n }\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/filters.js", "groupTitle": "Filters" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox", "title": "Delete a Mailbox", "name": "DeleteMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID. Special use folders and INBOX can not be deleted

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox deletion failed with code CANNOT\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox", "title": "Request Mailbox information", "name": "GetMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": " HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This mailbox does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "get", "url": "/users/:user/mailboxes", "title": "List Mailboxes for an User", "name": "GetMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "specialUse", "defaultValue": "false", "description": "

Should the response include only folders with specialUse flag set.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "counters", "defaultValue": "false", "description": "

Should the response include counters (total + unseen). Counters come with some overhead.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "sizes", "defaultValue": "false", "description": "

Should the response include mailbox size in bytes. Size numbers come with a lot of overhead as an aggregated query is ran.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

List of user mailboxes

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Mailbox ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name for the mailbox (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.specialUse", "description": "

Either special use identifier or null. One of \\Drafts, \\Junk, \\Sent or \\Trash

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.modifyIndex", "description": "

Modification sequence number. Incremented on every change in the mailbox.

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.subscribed", "description": "

Mailbox subscription status. IMAP clients may unsubscribe from a folder.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.total", "description": "

How many messages are stored in this mailbox

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.unseen", "description": "

How many unseen messages are stored in this mailbox

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"results\": [\n {\n \"id\": \"59fc66a03e54454869460e46\",\n \"name\": \"INBOX\",\n \"path\": \"INBOX\",\n \"specialUse\": null,\n \"modifyIndex\": 1808,\n \"subscribed\": true,\n \"total\": 20,\n \"unseen\": 2\n },\n {\n \"id\": \"59fc66a03e54454869460e47\",\n \"name\": \"Sent Mail\",\n \"path\": \"Sent Mail\",\n \"specialUse\": \"\\\\Sent\",\n \"modifyIndex\": 145,\n \"subscribed\": true,\n \"total\": 15,\n \"unseen\": 0\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?counters=true", "type": "curl" }, { "title": "Special Use Only", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes?specialUse=true", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "post", "url": "/users/:user/mailboxes", "title": "Create new Mailbox", "name": "PostMailboxes", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "path", "description": "

Full path of the mailbox, folders are separated by slashes, ends with the mailbox name (unicode string)

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "defaultValue": "0", "description": "

Retention policy for the created Mailbox. Milliseconds after a message added to mailbox expires. Set to 0 to disable.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Mailbox ID

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1d2816153888cdcd62a715\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox creation failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"First Level/Second 😎 Level/Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox", "title": "Update Mailbox information", "name": "PutMailbox", "group": "Mailboxes", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

Mailbox unique ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "path", "description": "

Full path of the mailbox, use this to rename an existing Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Retention policy for the Mailbox. Changing retention value only affects messages added to this folder after the change

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "subscribed", "description": "

Change Mailbox subscription state

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Mailbox update failed with code ALREADYEXISTS\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/5a1d2816153888cdcd62a715 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"path\": \"Updated Folder Name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/mailboxes.js", "groupTitle": "Mailboxes" }, { "type": "delete", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Delete a Message", "name": "DeleteMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Delete Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Delete a Message:", "content": "curl -i -XDELETE \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/2\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/forward", "title": "Forward stored Message", "name": "ForwardStoredMessage", "group": "Messages", "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 an user had forwarding turned on but the message was not delivered so you can try again. Forwarding does not modify the original message.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "target", "description": "

Number of original forwarding target

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "addresses", "description": "

An array of additional forward targets

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "forwarded", "description": "

Information about forwarding targets

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.seq", "description": "

Sequence ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.type", "description": "

Target type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "forwarded.value", "description": "

Target address

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"1600d2f36470008b72\",\n \"forwarded\": [\n {\n \"seq\": \"001\",\n \"type\": \"mail\",\n \"value\": \"andris@ethereal.email\"\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Forward a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/forward\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"addresses\": [\n \"andris@ethereal.email\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message", "title": "Request Message information", "name": "GetMessage", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "markAsSeen", "defaultValue": "false", "description": "

If true then marks message as seen

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "envelope", "description": "

SMTP envelope (if available)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.from", "description": "

Address from MAIL FROM

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "envelope.rcpt", "description": "

Array of addresses from RCPT TO (should have just one normally)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.value", "description": "

RCPT TO address as provided by SMTP client

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "envelope.rcpt.formatted", "description": "

Normalized RCPT address

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "from", "description": "

From: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "to", "description": "

To: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "cc", "description": "

Cc: header info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "messageId", "description": "

Message-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "date", "description": "

Datestring of message header

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "list", "description": "

If set then this message is from a mailing list

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.id", "description": "

Value from List-ID header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "list.unsubscribe", "description": "

Value from List-Unsubscribe header

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "expires", "description": "

Datestring, if set then indicates the time after this message is automatically deleted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "seen", "description": "

Does this message have a \\Seen flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "deleted", "description": "

Does this message have a \\Deleted flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "draft", "description": "

Does this message have a \\Draft flag

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "html", "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

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "text", "description": "

Plaintext content of the message

" }, { "group": "Success 200", "type": "Object[]", "optional": true, "field": "attachments", "description": "

List of attachments for this message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.id", "description": "

Attachment ID

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.filename", "description": "

Filename of the attachment

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.contentType", "description": "

MIME type

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.disposition", "description": "

Attachment disposition

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "attachments.transferEncoding", "description": "

Which transfer encoding was used (actual content when fetching attachments is not encoded)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "attachments.related", "description": "

Was this attachment found from a multipart/related node. This usually means that this is an embedded image

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "attachments.sizeKb", "description": "

Approximate size of the attachment in kilobytes

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "verificationResults", "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.

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls", "description": "

TLS information. Value is false if TLS was not used

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.name", "description": "

Cipher name, eg "ECDHE-RSA-AES128-GCM-SHA256"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.tls.version", "description": "

TLS version, eg "TLSv1/SSLv3"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.spf", "description": "

Domain name (either MFROM or HELO) of verified SPF or false if no SPF match was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "verificationResults.dkim", "description": "

Domain name of verified DKIM signature or false if no valid signature was found

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "contentType.params", "description": "

An object with Content-Type params as key-value pairs

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this message

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "reference", "description": "

Referenced message info

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"user\": \"59fc66a03e54454869460e45\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"to\": [\n {\n \"address\": \"bob@domain.dom\",\n \"name\": \"\"\n }\n ],\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"messageId\": \"<1066976914.4721.5.camel@localhost>\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"html\": [\n \"

Welcome to Ryan Finnie's MIME torture test.

\",\n \"

While a message/rfc822 part inside another message/rfc822 part in a
message isn't too strange, 200 iterations of that would be.

\"\n ],\n \"text\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed\\nto introduce a couple of the newer features of MIME-aware MUA\",\n \"attachments\": [\n {\n \"id\": \"ATT00004\",\n \"filename\": \"foo.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n },\n {\n \"id\": \"ATT00007\",\n \"filename\": \"blah1.gz\",\n \"contentType\": \"application/x-gzip\",\n \"disposition\": \"attachment\",\n \"transferEncoding\": \"base64\",\n \"related\": false,\n \"sizeKb\": 1\n }\n ],\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n },\n \"metaData\": \"{}\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/attachments/:attachment", "title": "Download Attachment", "name": "GetMessageAttachment", "group": "Messages", "description": "

This method returns attachment file contents in binary form

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachment", "description": "

ID of the Attachment

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This attachment does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/attachments/ATT00002\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: image/png\n\n<89>PNG...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages/:message/message.eml", "title": "Get Message source", "name": "GetMessageSource", "group": "Messages", "description": "

This method returns the full RFC822 formatted source of the stored message

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

ID of the Message

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1/message.eml\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: message/rfc822\n\nSubject: Ryan Finnie's MIME Torture Test v1.0\nFrom: Ryan Finnie \nTo: bob@domain.dom\nContent-Type: multipart/mixed; boundary=\"=-qYxqvD9rbH0PNeExagh1\"\n...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "List messages in a Mailbox", "name": "GetMessages", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "order", "defaultValue": "desc", "description": "

Ordering of the records by insert date

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.answered", "description": "

Does this message have a \\Answered flag

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.forwarded", "description": "

Does this message have a $Forwarded flag

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"answered\": false,\n \"forwarded\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "get", "url": "/users/:user/search", "title": "Search for messages", "name": "GetMessagesSearch", "group": "Messages", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "thread", "description": "

Thread ID

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Search string, uses MongoDB fulltext index. Covers data from mesage body and also common headers like from, to, subject etc.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "datestart", "description": "

Datestring for the earliest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "dateend", "description": "

Datestring for the latest message storing time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "from", "description": "

Partial match for the From: header line

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to", "description": "

Partial match for the To: and Cc: header lines

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Partial match for the Subject: header line

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "attachments", "description": "

If true, then matches only messages with attachments

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "description": "

If true, then matches only messages with \\Flagged flags

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "searchable", "description": "

If true, then matches messages not in Junk or Trash

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

Message listing

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.id", "description": "

ID of the Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.mailbox", "description": "

ID of the Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.thread", "description": "

ID of the Thread

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.from", "description": "

Sender info

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.name", "description": "

Name of the sender

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.from.address", "description": "

Address of the sender

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.to", "description": "

Recipients in To: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.to.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.cc", "description": "

Recipients in Cc: field

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.cc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results.bcc", "description": "

Recipients in Bcc: field. Usually only available for drafts

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.name", "description": "

Name of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.bcc.address", "description": "

Address of the recipient

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.subject", "description": "

Message subject

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.date", "description": "

Datestring

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.intro", "description": "

First 128 bytes of the message

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.attachments", "description": "

Does the message have attachments

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.seen", "description": "

Is this message alread seen or not

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.deleted", "description": "

Does this message have a \\Deleted flag (should not have as messages are automatically deleted once this flag is set)

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.flagged", "description": "

Does this message have a \\Flagged flag

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.url", "description": "

Relative API url for fetching message contents

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType", "description": "

Parsed Content-Type header. Usually needed to identify encrypted messages and such

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType.value", "description": "

MIME type of the message, eg. "multipart/mixed"

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.contentType.params", "description": "

An object with Content-Type params as key-value pairs

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"query\": \"Ryan\",\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"specialUse\": null,\n \"results\": [\n {\n \"id\": 1,\n \"mailbox\": \"59fc66a03e54454869460e46\",\n \"thread\": \"59fc66a13e54454869460e50\",\n \"from\": {\n \"address\": \"rfinnie@domain.dom\",\n \"name\": \"Ryan Finnie\"\n },\n \"subject\": \"Ryan Finnie's MIME Torture Test v1.0\",\n \"date\": \"2003-10-24T06:28:34.000Z\",\n \"intro\": \"Welcome to Ryan Finnie's MIME torture test. This message was designed to introduce a couple of the newer features of MIME-aware…\",\n \"attachments\": true,\n \"seen\": true,\n \"deleted\": false,\n \"flagged\": true,\n \"draft\": false,\n \"url\": \"/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages/1\",\n \"contentType\": {\n \"value\": \"multipart/mixed\",\n \"params\": {\n \"boundary\": \"=-qYxqvD9rbH0PNeExagh1\"\n }\n }\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/search?query=Ryan\"", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "put", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Update Message information", "name": "PutMessage", "group": "Messages", "description": "

This method updates message flags and also allows to move messages to a different mailbox

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "message", "description": "

Message ID values. Either comma separated numbers (1,2,3) or colon separated range (3:15)

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "moveTo", "description": "

ID of the target Mailbox if you want to move messages

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "seen", "description": "

State of the \\Seen flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "flagged", "description": "

State of the \\Flagged flag

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "draft", "description": "

State of the \\Draft flag

" }, { "group": "Parameter", "type": "Datestring", "optional": false, "field": "expires", "description": "

Either expiration date or false to turn of autoexpiration

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "id", "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

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "updated", "description": "

If messages were not moved, then indicates the number of updated messages

" } ] }, "examples": [ { "title": "Update Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"updated\": 2\n}", "type": "json" }, { "title": "Move Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"mailbox\": \"59fc66a13e54454869460e57\",\n \"id\": [\n [1,24],\n [2,25]\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Mark messages as unseen:", "content": "curl -i -XPUT \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a03e54454869460e46/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"message\": \"1,2,3\",\n \"seen\": false\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages/:message/submit", "title": "Submit Draft for delivery", "name": "SubmitStoredMessage", "group": "Messages", "description": "

This method allows to submit a draft message for delivery. Draft is moved to Sent mail folder.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "message", "description": "

Message ID

" }, { "group": "Parameter", "type": "Boolean", "optional": false, "field": "deleteFiles", "description": "

If true then deletes attachment files listed in metaData.attachedFiles array

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "queueId", "description": "

Message ID in outbound queue

" }, { "group": "Success 200", "type": "Object", "optional": true, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the draft was moved to (usually Sent mail)

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" } ] }, "examples": [ { "title": "Submit Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"queueId\": \"1682f5a712f000dfb6\",\n \"message\": {\n \"id\": 3,\n \"mailbox\": \"5c279b4e17abae166446f968\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Submit a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"deleteFiles\": true\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "post", "url": "/users/:user/mailboxes/:mailbox/messages", "title": "Upload Message", "name": "UploadMessage", "group": "Messages", "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 strucutred data fields, then do not use the raw property.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "mailbox", "description": "

ID of the Mailbox

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "unseen", "defaultValue": "false", "description": "

Is the message unseen or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "draft", "defaultValue": "false", "description": "

Is the message a draft or not

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "flagged", "defaultValue": "false", "description": "

Is the message flagged or not

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "raw", "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

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automaticall y

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "files", "description": "

Attachments as storage file IDs. These attachments are also listed to message metaData.attachedFiles array

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "reference.attachments", "defaultValue": "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

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Message information

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored into

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 2,\n \"mailbox\": \"5a2f9ca57308fc3a6f5f811e\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Upload a Message:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: message/rfc822' \\\n-d 'From: sender@example.com\nTo: recipient@example.com\nSubject: hello world!\n\nExample message'", "type": "curl" }, { "title": "Upload a Message Structure:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/mailboxes/5a2f9ca57308fc3a6f5f811e/messages\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"from\": {\n \"name\": \"sender name\",\n \"address\": \"sender@example.com\"\n },\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/messages.js", "groupTitle": "Messages" }, { "type": "delete", "url": "/users/:user/storage/:file", "title": "Delete a File", "name": "DeleteStorage", "group": "Storage", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "address", "description": "

ID of the File

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Trying to delete main address. Set a new main address first\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59ef21aef255ed1d9d790e7a/storage/59ef21aef255ed1d9d790e81", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "get", "url": "/users/:user/storage", "title": "List stored files", "name": "GetStorage", "group": "Storage", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of a filename

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

File listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

ID of the File

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.filename", "description": "

Filename

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.contentType", "description": "

Content-Type of the file

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.size", "description": "

File size

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59ef21aef255ed1d9d790e81\",\n \"filename\": \"hello.txt\",\n \"size\": 1024\n },\n {\n \"id\": \"59ef21aef255ed1d9d790e82\",\n \"filename\": \"finances.xls\",\n \"size\": 2084\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45/storage", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "get", "url": "/users/:user/storage/:file", "title": "Download File", "name": "GetStorageFile", "group": "Storage", "description": "

This method returns stored file contents in binary form

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "file", "description": "

ID of the File

" } ] } }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This attachment does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i \"http://localhost:8080/users/59fc66a03e54454869460e45/storage/59fc66a13e54454869460e57\"", "type": "curl" } ], "success": { "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: image/png\n\n<89>PNG...", "type": "text" } ] }, "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "post", "url": "/users/:user/storage", "title": "Upload File", "name": "UploadStorage", "group": "Storage", "description": "

This method allows to upload an attachment to be linked from a draft

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "content", "description": "

Base64 encoded file content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "filename", "description": "

Filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "contentType", "description": "

MIME type for the file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "id", "description": "

File ID

" } ] }, "examples": [ { "title": "Forward Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a2f9ca57308fc3a6f5f811e\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Upload a file:", "content": "curl -i -XPOST \"http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/storage\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"content\": \"aGVsbG93IGZyb20=\",\n \"filename\": \"test.txt\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/storage.js", "groupTitle": "Storage" }, { "type": "post", "url": "/users/:user/submit", "title": "Submit a Message for Delivery", "name": "PostSubmit", "group": "Submission", "description": "

Use this method to send emails from an user account

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

Users unique ID

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "reference", "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

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.mailbox", "description": "

Mailbox ID

" }, { "group": "Parameter", "type": "Number", "optional": false, "field": "reference.id", "description": "

Message ID in Mailbox

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "reference.action", "description": "

Either reply, replyAll or forward

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailbox", "description": "

Mailbox ID where to upload the message. If not set then message is uploaded to Sent Mail folder.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadOnly", "defaultValue": "false", "description": "

If true then generated message is not added to the sending queue

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "isDraft", "defaultValue": "false", "description": "

If true then treats this message as draft (should be used with uploadOnly=true)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sendTime", "description": "

Datestring for delivery if message should be sent some later time

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope", "description": "

SMTP envelope. If not provided then resolved either from message headers or from referenced message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "envelope.from", "description": "

Sender information. If not set then it is resolved to User's default address

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.from.address", "description": "

Sender address. If this is not listed as allowed address for the sending User then it is replaced with the User's default address

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "envelope.to", "description": "

Recipients information

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "envelope.to.address", "description": "

Recipient address

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "from", "description": "

Address for the From: header

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.name", "description": "

Name of the sender

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "from.address", "description": "

Address of the sender

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "to", "description": "

Addresses for the To: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "to.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "to.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "cc", "description": "

Addresses for the Cc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "cc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "cc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "bcc", "description": "

Addresses for the Bcc: header

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "bcc.name", "description": "

Name of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "bcc.address", "description": "

Address of the recipient

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "subject", "description": "

Message subject. If not then resolved from Reference message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "text", "description": "

Plaintext message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "html", "description": "

HTML formatted message

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "headers", "description": "

Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automatically

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.key", "description": "

Header key ('X-Mailer')

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "headers.value", "description": "

Header value ('My Awesome Mailing Service')

" }, { "group": "Parameter", "type": "Object[]", "optional": true, "field": "attachments", "description": "

Attachments for the message

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "attachments.content", "description": "

Base64 encoded attachment content

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.filename", "description": "

Attachment filename

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.contentType", "description": "

MIME type for the attachment file

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "attachments.cid", "description": "

Content-ID value if you want to reference to this attachment from HTML formatted message

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "meta", "description": "

Custom metainfo for the message

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "message", "description": "

Information about submitted Message

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.mailbox", "description": "

Mailbox ID the message was stored to

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "message.id", "description": "

Message ID in Mailbox

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "message.queueId", "description": "

Queue ID in MTA

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"message\": {\n \"id\": 16,\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"queueId\": \"1600798505b000a25f\"\n }\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "type": "String", "optional": false, "field": "error", "description": "

Description of the error

" }, { "group": "Error 4xx", "type": "String", "optional": false, "field": "code", "description": "

Reason for the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"User account is disabled\",\n \"code\": \"ERRDISABLEDUSER\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "# Sender info is derived from account settings\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"to\": [{\n \"address\": \"andris@ethereal.email\"\n }],\n \"subject\": \"Hello world!\",\n \"text\": \"Test message\"\n}'", "type": "curl" }, { "title": "Reply to All", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/59fc66a03e54454869460e45/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"59fc66a03e54454869460e47\",\n \"id\": 15,\n \"action\": \"replyAll\"\n },\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" }, { "title": "Upload only", "content": "# Recipients and subject line are derived from referenced message\ncurl -i -XPOST \"http://localhost:8080/users/5a2fe496ce76ede84f177ec3/submit\" \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reference\": {\n \"mailbox\": \"5a2fe496ce76ede84f177ec4\",\n \"id\": 1,\n \"action\": \"replyAll\"\n },\n \"uploadOnly\": true,\n \"mailbox\": \"5a33b45acf482d3219955bc4\",\n \"text\": \"Yeah, sure\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/submit.js", "groupTitle": "Submission" }, { "type": "post", "url": "/users/:user/2fa/totp/check", "title": "Validate TOTP Token", "name": "CheckTotp2FA", "group": "TwoFactorAuth", "description": "

This method checks if a TOTP token provided by an User is valid for authentication

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to validate TOTP\"\n \"code\": \"InvalidToken\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/check \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa", "title": "Disable 2FA", "name": "Disable2FA", "group": "TwoFactorAuth", "description": "

This method disables all 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/custom", "title": "Disable custom 2FA for an user", "name": "DisableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables custom 2FA. If it was the only 2FA set up, then account password for IMAP/POP3/SMTP gets enabled again

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:user/2fa/totp", "title": "Disable TOTP auth", "name": "DisableTotp2FA", "group": "TwoFactorAuth", "description": "

This method disables TOTP for an user. Does not affect other 2FA mechanisms an user might have set up

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "put", "url": "/users/:user/2fa/custom", "title": "Enable custom 2FA for an user", "name": "EnableCustom2FA", "group": "TwoFactorAuth", "description": "

This method disables account password for IMAP/POP3/SMTP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/2fa/custom \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/custom.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/enable", "title": "Enable TOTP seed", "name": "EnableTotp2FA", "group": "TwoFactorAuth", "description": "

This method enables TOTP for an user by verifying the seed value generated from 2fa/totp/setup

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "token", "description": "

6-digit number that matches seed value from 2fa/totp/setup

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/enable \\\n-H 'Content-type: application/json' \\\n-d '{\n \"token\": \"123456\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "post", "url": "/users/:user/2fa/totp/setup", "title": "Generate TOTP seed", "name": "SetupTotp2FA", "group": "TwoFactorAuth", "description": "

This method generates TOTP seed and QR code for 2FA. User needs to verify the seed value using 2fa/totp/enable endpoint

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "user", "description": "

ID of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "label", "description": "

Label text for QR code (defaults to username)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "issuer", "description": "

Description text for QR code (defaults to "WildDuck")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "seed", "description": "

Generated TOTP seed value

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "qrcode", "description": "

Base64 encoded QR code

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"seed\": \"secretseed\",\n \"qrcode\": \"base64-encoded-image\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username does not exist\"\n \"code\": \"UserNotFound\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/2fa/totp/setup \\\n-H 'Content-type: application/json' \\\n-d '{\n \"label\": \"user@example.com\",\n \"issuer\": \"My Awesome Web Service\",\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/2fa/totp.js", "groupTitle": "TwoFactorAuth" }, { "type": "delete", "url": "/users/:id", "title": "Delete an User", "name": "DeleteUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XDELETE http://localhost:8080/users/5a1bda70bfbd1442cd96c6f0?ip=127.0.0.1", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id/updates", "title": "Open change stream", "name": "GetUpdates", "group": "Users", "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

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "String", "optional": false, "field": "command", "description": "

Indicates data event type

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\nContent-Type: text/event-stream\n\ndata: {\ndata: \"command\": \"CREATE\",\ndata: \"mailbox\": \"5a1d3061153888cdcd62a719\",\ndata: \"path\": \"First Level/Second 😎 Level/Folder Name\"\ndata: }", "type": "text" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "var stream = new EventSource('/users/59fc66a03e54454869460e45/updates');\nstream.onmessage = function(e) {\n console.log(JSON.parse(e.data));\n};", "type": "javascript" } ], "version": "0.0.0", "filename": "lib/api/updates.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/:id", "title": "Request User information", "name": "GetUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "retention", "description": "

Default retention time in ms. false if not enabled

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "enabled2fa", "description": "

List of enabled 2FA methods

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "keyInfo", "description": "

Information about public key or false if key is not available

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.name", "description": "

Name listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.address", "description": "

E-mail address listed in public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "keyInfo.fingerprint", "description": "

Fingerprint of the public key

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "metaData", "description": "

JSON formatted custom metadata object set for this user

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits", "description": "

Account limits and usage

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.recipients", "description": "

Sending quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.allowed", "description": "

How many messages per 24 hours can be sent

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.used", "description": "

How many messages are sent during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.recipients.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.forwards", "description": "

Forwarding quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.allowed", "description": "

How many messages per 24 hours can be forwarded

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.used", "description": "

How many messages are forwarded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.forwards.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.received", "description": "

Receiving quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.allowed", "description": "

How many messages per 1 hour can be received

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.used", "description": "

How many messages are received during current 1 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.received.ttl", "description": "

Time until the end of current 1 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapUpload", "description": "

IMAP upload quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.allowed", "description": "

How many bytes per 24 hours can be uploaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.used", "description": "

How many bytes are uploaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapUpload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.imapDownload", "description": "

IMAP download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.allowed", "description": "

How many bytes per 24 hours can be downloaded via IMAP. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapDownload.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "limits.pop3Download", "description": "

POP3 download quota

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.allowed", "description": "

How many bytes per 24 hours can be downloaded via POP3. Only message contents are counted, not protocol overhead.

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.used", "description": "

How many bytes are downloaded during current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.pop3Download.ttl", "description": "

Time until the end of current 24 hour period

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.allowed", "description": "

How many parallel IMAP connections are permitted

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "limits.imapMaxConnections.used", "description": "

How many parallel IMAP connections are currenlty in use

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "tags", "description": "

List of tags associated with the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

Disabled scopes for this user

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\",\n \"username\": \"testuser01\",\n \"name\": null,\n \"address\": \"testuser01@example.com\",\n \"retention\": false,\n \"enabled2fa\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"pubKey\": \"\",\n \"keyInfo\": false,\n \"targets\": [\n \"my.old.address@example.com\",\n \"smtp://mx2.zone.eu:25\"\n ],\n \"limits\": {\n \"quota\": {\n \"allowed\": 107374182400,\n \"used\": 289838\n },\n \"recipients\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n },\n \"forwards\": {\n \"allowed\": 2000,\n \"used\": 0,\n \"ttl\": false\n }\n },\n \"tags\": [\"green\", \"blue\"],\n \"disabledScopes\": [\"pop3\"],\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/59fc66a03e54454869460e45", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users/resolve/:username", "title": "Resolve ID for an username", "name": "GetUsername", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "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")

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID (24 byte hex)

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users/resolve/testuser", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "get", "url": "/users", "title": "List registered Users", "name": "GetUsers", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": true, "field": "query", "description": "

Partial match of username or default email address

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "tags", "description": "

Comma separated list of tags. The User must have at least one to be set

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "requiredTags", "description": "

Comma separated list of tags. The User must have all listed tags to be set

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "limit", "defaultValue": "20", "description": "

How many records to return

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "page", "defaultValue": "1", "description": "

Current page number. Informational only, page numbers start from 1

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "next", "description": "

Cursor value for next page, retrieved from nextCursor response value

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "previous", "description": "

Cursor value for previous page, retrieved from previousCursor response value

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "total", "description": "

How many results were found

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "page", "description": "

Current page number. Derived from page query argument

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "previousCursor", "description": "

Either a cursor string or false if there are not any previous results

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "nextCursor", "description": "

Either a cursor string or false if there are not any next results

" }, { "group": "Success 200", "type": "Object[]", "optional": false, "field": "results", "description": "

User listing

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.id", "description": "

Users unique ID (24 byte hex)

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.username", "description": "

Username of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.name", "description": "

Name of the User

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "results.address", "description": "

Main email address of the User

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.tags", "description": "

List of tags associated with the User'

" }, { "group": "Success 200", "type": "String[]", "optional": false, "field": "results.targets", "description": "

List of forwarding targets

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Success 200", "type": "Object", "optional": false, "field": "results.quota", "description": "

Quota usage limits

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.allowed", "description": "

Allowed quota of the user in bytes

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "results.quota.used", "description": "

Space used in bytes

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.hasPasswordSet", "description": "

If true then the User has a password set and can authenticate

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.activated", "description": "

Is the account activated

" }, { "group": "Success 200", "type": "Boolean", "optional": false, "field": "results.disabled", "description": "

If true then the user can not authenticate or receive any new mail

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"total\": 1,\n \"page\": 1,\n \"previousCursor\": false,\n \"nextCursor\": false,\n \"results\": [\n {\n \"id\": \"59cb948ad80a820b68f05230\",\n \"username\": \"myuser\",\n \"name\": \"John Doe\",\n \"address\": \"john@example.com\",\n \"tags\": [],\n \"forward\": [],\n \"encryptMessages\": false,\n \"encryptForwarded\": false,\n \"quota\": {\n \"allowed\": 1073741824,\n \"used\": 17799833\n },\n \"hasPasswordSet\": true,\n \"activated\": true,\n \"disabled\": false\n }\n ]\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Database error\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i http://localhost:8080/users", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users", "title": "Create new user", "name": "PostUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "username", "description": "

Username of the User. Dots are allowed but informational only ("user.name" is the same as "username").

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": false, "field": "password", "description": "

Password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "address", "description": "

Default email address for the User (autogenerated if not set)

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "emptyAddress", "description": "

If true then do not autogenerate missing email address for the User. Only needed if you want to create an user account that does not have any email address associated

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "requirePasswordChange", "description": "

If true then requires the user to change password, useful if password for the account was autogenerated

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "addTagsToAddress", "description": "

If true then autogenerated address gets the same tags as the user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "defaultValue": "50", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Object", "optional": true, "field": "mailboxes", "description": "

Optional names for special mailboxes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.sent", "defaultValue": "Sent Mail", "description": "

Path of Sent Mail folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.junk", "defaultValue": "Junk", "description": "

Path of spam folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.drafts", "defaultValue": "Drafts", "description": "

Path of drafts folder

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "mailboxes.trash", "defaultValue": "Trash", "description": "

Path of trash folder

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "id", "description": "

ID for the created User

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"id\": \"5a1bda70bfbd1442cd96c6f0\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This username already exists\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"myuser\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"address\": \"john.doe@example.com\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" }, { "title": "Example address:", "content": "curl -i -XPOST http://localhost:8080/users \\\n-H 'Content-type: application/json' \\\n-d '{\n \"username\": \"john.doe@example.com\",\n \"password\": \"verysecret\",\n \"name\": \"John Doe\",\n \"tags\": [\n \"status:regular_user\",\n \"subscription:business_big\"\n ]\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/quota/reset", "title": "Recalculate User quota", "name": "PostUserQuota", "group": "Users", "description": "

This method recalculates quota usage for an 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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "Number", "optional": false, "field": "storageUsed", "description": "

Calculated quota usage for the user

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"storageUsed\": 1234567\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/59fc66a03e54454869460e45/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/quota/reset", "title": "Recalculate Quota for all Users", "name": "PostUserQuotaAll", "group": "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.

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"Failed to process request\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/quota/reset \\\n-H 'Content-type: application/json' \\\n-d '{}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id", "title": "Update User information", "name": "PutUser", "group": "Users", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "name", "description": "

Name of the User

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "existingPassword", "description": "

If provided then validates against account password before applying any changes

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "password", "description": "

New password for the account. Set to boolean false to disable password usage

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "hashedPassword", "description": "

If true then password is already hashed, so store as. Hash needs to be bcrypt $2a, $2y or $2b. Additionally md5-crypt hashes $1 are allowed but these are rehashed on first successful authentication

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "allowUnsafe", "defaultValue": "true", "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.

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "tags", "description": "

A list of tags associated with this user

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "retention", "description": "

Default retention time in ms. Set to 0 to disable

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "uploadSentMessages", "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.

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptMessages", "description": "

If true then received messages are encrypted

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "encryptForwarded", "description": "

If true then forwarded messages are encrypted

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "pubKey", "description": "

Public PGP key for the User that is used for encryption. Use empty string to remove the key

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "metaData", "description": "

Optional metadata, must be JSON formatted object

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "language", "description": "

Language code for the User

" }, { "group": "Parameter", "type": "String[]", "optional": true, "field": "targets", "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

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "spamLevel", "description": "

Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "quota", "description": "

Allowed quota of the user in bytes

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "recipients", "description": "

How many messages per 24 hour can be sent

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "forwards", "description": "

How many messages per 24 hour can be forwarded

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxUpload", "description": "

How many bytes can be uploaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxDownload", "description": "

How many bytes can be downloaded via IMAP during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "pop3MaxDownload", "description": "

How many bytes can be downloaded via POP3 during 24 hour

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "imapMaxConnections", "description": "

How many parallel IMAP connections are alowed

" }, { "group": "Parameter", "type": "Number", "optional": true, "field": "receivedMax", "description": "

How many messages can be received from MX during 60 seconds

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disable2fa", "description": "

If true, then disables 2FA for this user

" }, { "group": "Parameter", "type": "String[]", "optional": false, "field": "disabledScopes", "description": "

List of scopes that are disabled for this user ("imap", "pop3", "smtp")

" }, { "group": "Parameter", "type": "Boolean", "optional": true, "field": "disabled", "description": "

If true then disables user account (can not login, can not receive messages)

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45 \\\n-H 'Content-type: application/json' \\\n-d '{\n \"name\": \"Updated user name\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "put", "url": "/users/:id/logout", "title": "Log out User", "name": "PutUserLogout", "group": "Users", "description": "

This method logs out all user sessions in IMAP

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "reason", "description": "

Message to be shown to connected IMAP client

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPUT http://localhost:8080/users/59fc66a03e54454869460e45/logout \\\n-H 'Content-type: application/json' \\\n-d '{\n \"reason\": \"Logout requested from API\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" }, { "type": "post", "url": "/users/:id/password/reset", "title": "Reset password for an User", "name": "ResetUserPassword", "group": "Users", "description": "

This method generates a new temporary password for an User. Additionally it removes all two-factor authentication settings

", "header": { "fields": { "Header": [ { "group": "Header", "type": "String", "optional": false, "field": "X-Access-Token", "description": "

Optional access token if authentication is enabled

" } ] }, "examples": [ { "title": "Header-Example:", "content": "{\n \"X-Access-Token\": \"59fc66a03e54454869460e45\"\n}", "type": "json" } ] }, "parameter": { "fields": { "Parameter": [ { "group": "Parameter", "type": "String", "optional": false, "field": "id", "description": "

Users unique ID.

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "validAfter", "description": "

Allow using the generated password not earlier than provided time

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "sess", "description": "

Session identifier for the logs

" }, { "group": "Parameter", "type": "String", "optional": true, "field": "ip", "description": "

IP address for the logs

" } ] } }, "success": { "fields": { "Success 200": [ { "group": "Success 200", "type": "Boolean", "optional": false, "field": "success", "description": "

Indicates successful response

" }, { "group": "Success 200", "type": "String", "optional": false, "field": "password", "description": "

Temporary password

" } ] }, "examples": [ { "title": "Success-Response:", "content": "HTTP/1.1 200 OK\n{\n \"success\": true,\n \"password\": \"temporarypass\"\n}", "type": "json" } ] }, "error": { "fields": { "Error 4xx": [ { "group": "Error 4xx", "optional": false, "field": "error", "description": "

Description of the error

" } ] }, "examples": [ { "title": "Error-Response:", "content": "HTTP/1.1 200 OK\n{\n \"error\": \"This user does not exist\"\n}", "type": "json" } ] }, "examples": [ { "title": "Example usage:", "content": "curl -i -XPOST http://localhost:8080/users/5a1bda70bfbd1442cd96/password/reset \\\n-H 'Content-type: application/json' \\\n-d '{\n \"ip\": \"127.0.0.1\"\n}'", "type": "curl" } ], "version": "0.0.0", "filename": "lib/api/users.js", "groupTitle": "Users" } ] diff --git a/docs/api_project.js b/docs/api_project.js index cf586c1..062b24b 100644 --- a/docs/api_project.js +++ b/docs/api_project.js @@ -1 +1 @@ -define({ "name": "wildduck", "version": "1.0.0", "description": "WildDuck API docs", "title": "WildDuck API", "url": "https://api.wildduck.email", "sampleUrl": false, "defaultVersion": "0.0.0", "apidoc": "0.3.0", "generator": { "name": "apidoc", "time": "2019-03-21T08:29:21.845Z", "url": "http://apidocjs.com", "version": "0.17.7" } }); +define({ "name": "wildduck", "version": "1.0.0", "description": "WildDuck API docs", "title": "WildDuck API", "url": "https://api.wildduck.email", "sampleUrl": false, "defaultVersion": "0.0.0", "apidoc": "0.3.0", "generator": { "name": "apidoc", "time": "2019-03-26T12:14:03.120Z", "url": "http://apidocjs.com", "version": "0.17.7" } }); diff --git a/docs/api_project.json b/docs/api_project.json index d69ab8b..1d70b24 100644 --- a/docs/api_project.json +++ b/docs/api_project.json @@ -1 +1 @@ -{ "name": "wildduck", "version": "1.0.0", "description": "WildDuck API docs", "title": "WildDuck API", "url": "https://api.wildduck.email", "sampleUrl": false, "defaultVersion": "0.0.0", "apidoc": "0.3.0", "generator": { "name": "apidoc", "time": "2019-03-21T08:29:21.845Z", "url": "http://apidocjs.com", "version": "0.17.7" } } +{ "name": "wildduck", "version": "1.0.0", "description": "WildDuck API docs", "title": "WildDuck API", "url": "https://api.wildduck.email", "sampleUrl": false, "defaultVersion": "0.0.0", "apidoc": "0.3.0", "generator": { "name": "apidoc", "time": "2019-03-26T12:14:03.120Z", "url": "http://apidocjs.com", "version": "0.17.7" } } diff --git a/indexes.yaml b/indexes.yaml index b8617f7..22e2944 100644 --- a/indexes.yaml +++ b/indexes.yaml @@ -1,535 +1,560 @@ --- collections: + # create following collections with specific options -# create following collections with specific options + - collection: messages + options: + storageEngine: + wiredTiger: + configString: block_compressor=zlib -- collection: messages - options: - storageEngine: - wiredTiger: - configString: block_compressor=zlib + - collection: attachments.files + type: gridfs + options: + storageEngine: + wiredTiger: + configString: block_compressor=zlib -- collection: attachments.files - type: gridfs - options: - storageEngine: - wiredTiger: - configString: block_compressor=zlib - -- collection: attachments.chunks - type: gridfs - options: - storageEngine: - wiredTiger: - configString: block_compressor=zlib + - collection: attachments.chunks + type: gridfs + options: + storageEngine: + wiredTiger: + configString: block_compressor=zlib indexes: - -# Indexes for the user collection - -- collection: users - type: users # index applies to users database - index: - name: users - key: - username: 1 -- collection: users - type: users # index applies to users database - index: - name: users_dotless - unique: true - key: - unameview: 1 - -- collection: users - type: users # index applies to users database - index: - name: show_new - key: - created: -1 - -- collection: users - type: users # index applies to users database - index: - name: users_tags - key: - tagsview: 1 - sparse: true - -# Indexes for the addresses collection -- collection: addresses - type: users # index applies to users database - index: - name: address_dotless - unique: true - key: - addrview: 1 - -- collection: addresses - type: users # index applies to users database - index: - name: address_tags - key: - tagsview: 1 - sparse: true - -- collection: addresses - type: users # index applies to users database - index: - name: address_paging - key: - addrview: 1 - _id: 1 - -- collection: addresses - type: users # index applies to users database - index: - name: user - key: - user: 1 - -# Indexes for the domainaliases collection -- collection: domainaliases - type: users # index applies to users database - index: - name: domainalias - unique: true - key: - alias: 1 - -- collection: domainaliases - type: users # index applies to users database - index: - name: domainlist - key: - domain: 1 - -# Indexes for the application specific passwords collection - -- collection: asps - type: users # index applies to users database - index: - name: asps_user - key: - user: 1 - -- collection: asps - type: users # index applies to users database - index: - name: entry_autoexpire - # autoremove log entries after expire seconds - expireAfterSeconds: 0 - key: - expires: 1 - -# Indexes for the authentication log collection -- collection: authlog - type: users # index applies to users database - index: - name: user - key: - user: 1 - _id: -1 # sort newer first - -- collection: authlog - type: users # index applies to users database - index: - name: insert - key: - user: 1 - created: 1 - key: 1 - -- collection: authlog - type: users # index applies to users database - index: - name: user_by_ip - key: - user: 1 - ip: 1 # List events for user by IP - _id: -1 - partialFilterExpression: - ip: true - -- collection: authlog - type: users # index applies to users database - index: - name: by_ip - key: - ip: 1 # All events from this IP - sparse: true - -- collection: authlog - type: users # index applies to users database - index: - name: user_hashed - key: - user: hashed # sharding - -- collection: authlog - type: users # index applies to users database - index: - name: entry_autoexpire - # autoremove log entries after expire days - expireAfterSeconds: 0 - key: - expires: 1 - -# Indexes for the filters collection - -- collection: filters - index: - name: user - key: - user: 1 - -# Indexes for the autoreply collection - -- collection: autoreplies - index: - name: autoreply - key: - user: 1 - start: 1 - end: 1 - -# Indexes for the mailboxes collection -# note: should mailboxes collection be sharded? could be by user -- collection: mailboxes - index: - name: user_path - unique: true - key: - user: 1 - path: 1 - -- collection: mailboxes - index: - name: user_subscribed - key: - user: 1 - subscribed: 1 - -- collection: mailboxes - index: - name: find_by_type - key: - user: 1 - specialUse: 1 - -# Indexes for the messages collection - -- collection: messages - index: - # several message related queries include the shard key values - name: mailbox_uid_shard - key: - _id: 1 - mailbox: 1 - uid: 1 - -- collection: messages - index: - name: user_messages_by_thread - key: - user: 1 - thread: 1 - -- collection: messages - index: - # use also as sharding key - name: mailbox_uid - key: - mailbox: 1 - uid: 1 - _id: 1 - -- collection: messages - index: - name: mailbox_uid_reverse - key: - mailbox: 1 - uid: -1 - _id: -1 - -- collection: messages - index: - name: mailbox_modseq_uid - key: - mailbox: 1 - modseq: 1 - uid: 1 - -- collection: messages - index: - name: mailbox_flags - key: - mailbox: 1 - flags: 1 - -- collection: messages - index: - name: by_idate - key: - mailbox: 1 - idate: 1 - -- collection: messages - index: - name: by_idate_reverse - key: - mailbox: 1 - idate: -1 - -- collection: messages - index: - name: by_hdate - key: - mailbox: 1 - hdate: 1 - msgid: 1 - -- collection: messages - index: - name: by_size - key: - mailbox: 1 - size: 1 - -- collection: messages - index: - name: by_headers - key: - mailbox: 1 - headers.key: 1 - headers.value: 1 - -- collection: messages - index: - # there can be only one $text index per collection - name: fulltext - key: - user: 1 - headers.value: text - text: text - partialFilterExpression: - searchable: true - -- collection: messages - index: - # in most cases we only care about unseen, not seen messages - name: mailbox_unseen_flag - key: - mailbox: 1 - unseen: 1 - -- collection: messages - index: - name: user_unseen_flag - key: - user: 1 - unseen: 1 - partialFilterExpression: - searchable: true - -- collection: messages - index: - # some mail agents list messages that do not have the \Deleted flag set - name: mailbox_undeleted_flag - key: - mailbox: 1 - undeleted: 1 - -- collection: messages - index: - name: mailbox_flagged_flag - key: - mailbox: 1 - flagged: 1 - -- collection: messages - index: - name: user_flagged_flag - key: - user: 1 - flagged: 1 - -- collection: messages - index: - name: user_searchable_flag - key: - user: 1 - searchable: 1 - -- collection: messages - index: - name: mailbox_draft_flag - key: - mailbox: 1 - draft: 1 - -- collection: messages - index: - name: has_attachment - key: - mailbox: 1 - ha: 1 - -- collection: messages - index: - # This filter finds all messages that are expired and must be deleted. - # Not sure about performance though as it is a global query - name: retention_time - partialFilterExpression: - exp: true - key: - exp: 1 - rdate: 1 - -# indexes for deleted messages -- collection: archived - index: - name: user_messages - key: - user: 1 - _id: 1 - -# indexes for deleted messages -- collection: archived - index: - name: user_messages_desc - key: - user: 1 - _id: -1 - -- collection: archived - index: - name: user_messages_archived - key: - user: 1 - archived: 1 - -- collection: archived - index: - name: retention_time - partialFilterExpression: - exp: true - key: - exp: 1 - rdate: 1 - -# Indexes for the attachments collection -# attachments.files collection should be sharded by _id (hash) -# attachments.chunks collection should be sharded by files_id (hash) - -- collection: attachments.files - type: gridfs # index applies to gridfs database - index: - name: attachment_id_hashed - key: - _id: hashed - -- collection: attachments.files - type: gridfs # index applies to gridfs database - index: - name: related_attachments - key: - metadata.c: 1 - metadata.m: 1 - -- collection: attachments.chunks - type: gridfs # index applies to gridfs database - index: - # hashed index needed for sharding - name: chunks_shard - key: - files_id: hashed - -- collection: attachments.chunks - type: gridfs # index applies to gridfs database - index: - name: files_id_1_n_1 - unique: true - key: - files_id: 1 - n: 1 - -# Indexes for the DKIm collection - -- collection: dkim - index: - name: dkim_paging - key: - domain: 1 - _id: 1 - -- collection: dkim - index: - name: dkim_primary - unique: true - key: - domain: 1 - -# Indexes for the journal collection - -- collection: journal - index: - # this index is used to apply changes in a mailbox for IMAP session - name: mailbox_modseq - key: - mailbox: 1 - modseq: 1 - -- collection: journal - index: - # this index is used to send updates to a logged in webmail user - name: user_limit_id - key: - user: 1 - _id: 1 - -- collection: journal - index: - # this index is used to find the latest journal entry - name: user_limit_id_reverse - key: - user: 1 - _id: -1 - -- collection: journal - # delete journal entries after 3 hours - index: - name: journal_autoexpire - expireAfterSeconds: 10800 - key: - created: 1 - -# Indexes for the threads collection - -- collection: threads - index: - name: thread_shard - key: - user: hashed - -- collection: threads - index: - name: thread - key: - user: 1 - ids: 1 - -- collection: threads - index: - name: thread_autoexpire - # autoremove thread indexes after 180 days of inactivity - expireAfterSeconds: 15552000 - key: - updated: 1 - -- collection: tasks - index: - name: task - key: - locked: 1 - lockedUntil: 1 + # Indexes for the user collection + + - collection: users + type: users # index applies to users database + index: + name: users + key: + username: 1 + - collection: users + type: users # index applies to users database + index: + name: users_dotless + unique: true + key: + unameview: 1 + + - collection: users + type: users # index applies to users database + index: + name: show_new + key: + created: -1 + + - collection: users + type: users # index applies to users database + index: + name: users_tags + key: + tagsview: 1 + sparse: true + + # Indexes for the addresses collection + - collection: addresses + type: users # index applies to users database + index: + name: address_dotless + unique: true + key: + addrview: 1 + + - collection: addresses + type: users # index applies to users database + index: + name: address_tags + key: + tagsview: 1 + sparse: true + + - collection: addresses + type: users # index applies to users database + index: + name: address_paging + key: + addrview: 1 + _id: 1 + + - collection: addresses + type: users # index applies to users database + index: + name: user + key: + user: 1 + + # Indexes for the domainaliases collection + - collection: domainaliases + type: users # index applies to users database + index: + name: domainalias + unique: true + key: + alias: 1 + + - collection: domainaliases + type: users # index applies to users database + index: + name: domainlist + key: + domain: 1 + + # Indexes for the application specific passwords collection + + - collection: asps + type: users # index applies to users database + index: + name: asps_user + key: + user: 1 + + - collection: asps + type: users # index applies to users database + index: + name: entry_autoexpire + # autoremove log entries after expire seconds + expireAfterSeconds: 0 + key: + expires: 1 + + # Indexes for the authentication log collection + - collection: authlog + type: users # index applies to users database + index: + name: user + key: + user: 1 + _id: -1 # sort newer first + + - collection: authlog + type: users # index applies to users database + index: + name: insert + key: + user: 1 + created: 1 + key: 1 + + - collection: authlog + type: users # index applies to users database + index: + name: user_by_ip + key: + user: 1 + ip: 1 # List events for user by IP + _id: -1 + partialFilterExpression: + ip: true + + - collection: authlog + type: users # index applies to users database + index: + name: by_ip + key: + ip: 1 # All events from this IP + sparse: true + + - collection: authlog + type: users # index applies to users database + index: + name: user_hashed + key: + user: hashed # sharding + + - collection: authlog + type: users # index applies to users database + index: + name: entry_autoexpire + # autoremove log entries after expire days + expireAfterSeconds: 0 + key: + expires: 1 + + # Indexes for the filters collection + + - collection: filters + index: + name: user + key: + user: 1 + + # Indexes for the autoreply collection + + - collection: autoreplies + index: + name: autoreply + key: + user: 1 + start: 1 + end: 1 + + # Indexes for the mailboxes collection + # note: should mailboxes collection be sharded? could be by user + - collection: mailboxes + index: + name: user_path + unique: true + key: + user: 1 + path: 1 + + - collection: mailboxes + index: + name: user_subscribed + key: + user: 1 + subscribed: 1 + + - collection: mailboxes + index: + name: find_by_type + key: + user: 1 + specialUse: 1 + + # Indexes for the messages collection + + - collection: messages + index: + # several message related queries include the shard key values + name: mailbox_uid_shard + key: + _id: 1 + mailbox: 1 + uid: 1 + + - collection: messages + index: + name: user_messages_by_thread + key: + user: 1 + thread: 1 + + - collection: messages + index: + # use also as sharding key + name: mailbox_uid + key: + mailbox: 1 + uid: 1 + _id: 1 + + - collection: messages + index: + name: mailbox_uid_reverse + key: + mailbox: 1 + uid: -1 + _id: -1 + + - collection: messages + index: + name: mailbox_modseq_uid + key: + mailbox: 1 + modseq: 1 + uid: 1 + + - collection: messages + index: + name: mailbox_flags + key: + mailbox: 1 + flags: 1 + + - collection: messages + index: + name: by_idate + key: + mailbox: 1 + idate: 1 + + - collection: messages + index: + name: by_idate_reverse + key: + mailbox: 1 + idate: -1 + + - collection: messages + index: + name: by_hdate + key: + mailbox: 1 + hdate: 1 + msgid: 1 + + - collection: messages + index: + name: by_size + key: + mailbox: 1 + size: 1 + + - collection: messages + index: + name: by_headers + key: + mailbox: 1 + headers.key: 1 + headers.value: 1 + + - collection: messages + index: + # there can be only one $text index per collection + name: fulltext + key: + user: 1 + headers.value: text + text: text + partialFilterExpression: + searchable: true + + - collection: messages + index: + # in most cases we only care about unseen, not seen messages + name: mailbox_unseen_flag + key: + mailbox: 1 + unseen: 1 + + - collection: messages + index: + name: user_unseen_flag + key: + user: 1 + unseen: 1 + partialFilterExpression: + searchable: true + + - collection: messages + index: + # some mail agents list messages that do not have the \Deleted flag set + name: mailbox_undeleted_flag + key: + mailbox: 1 + undeleted: 1 + + - collection: messages + index: + name: mailbox_flagged_flag + key: + mailbox: 1 + flagged: 1 + + - collection: messages + index: + name: user_flagged_flag + key: + user: 1 + flagged: 1 + + - collection: messages + index: + name: user_searchable_flag + key: + user: 1 + searchable: 1 + + - collection: messages + index: + name: mailbox_draft_flag + key: + mailbox: 1 + draft: 1 + + - collection: messages + index: + name: has_attachment + key: + mailbox: 1 + ha: 1 + + - collection: messages + index: + # This filter finds all messages that are expired and must be deleted. + # Not sure about performance though as it is a global query + name: retention_time + partialFilterExpression: + exp: true + key: + exp: 1 + rdate: 1 + + # indexes for deleted messages + - collection: archived + index: + name: user_messages + key: + user: 1 + _id: 1 + + # indexes for deleted messages + - collection: archived + index: + name: user_messages_desc + key: + user: 1 + _id: -1 + + - collection: archived + index: + name: user_messages_archived + key: + user: 1 + archived: 1 + + - collection: archived + index: + name: retention_time + partialFilterExpression: + exp: true + key: + exp: 1 + rdate: 1 + + # Indexes for the storage collection + # storage.files collection should be sharded by _id (hash) + # storage.chunks collection should be sharded by files_id (hash) + + - collection: storage.files + type: gridfs # index applies to gridfs database + index: + name: storage_id_hashed + key: + _id: hashed + + - collection: storage.chunks + type: gridfs # index applies to gridfs database + index: + # hashed index needed for sharding + name: chunks_shard + key: + files_id: hashed + + - collection: storage.files + type: gridfs # index applies to gridfs database + index: + name: user_files + key: + metadata.user: 1 + filename: 1 + + # Indexes for the attachments collection + # attachments.files collection should be sharded by _id (hash) + # attachments.chunks collection should be sharded by files_id (hash) + + - collection: attachments.files + type: gridfs # index applies to gridfs database + index: + name: attachment_id_hashed + key: + _id: hashed + + - collection: attachments.files + type: gridfs # index applies to gridfs database + index: + name: related_attachments + key: + metadata.c: 1 + metadata.m: 1 + + - collection: attachments.chunks + type: gridfs # index applies to gridfs database + index: + # hashed index needed for sharding + name: chunks_shard + key: + files_id: hashed + + - collection: attachments.chunks + type: gridfs # index applies to gridfs database + index: + name: files_id_1_n_1 + unique: true + key: + files_id: 1 + n: 1 + + # Indexes for the DKIm collection + + - collection: dkim + index: + name: dkim_paging + key: + domain: 1 + _id: 1 + + - collection: dkim + index: + name: dkim_primary + unique: true + key: + domain: 1 + + # Indexes for the journal collection + + - collection: journal + index: + # this index is used to apply changes in a mailbox for IMAP session + name: mailbox_modseq + key: + mailbox: 1 + modseq: 1 + + - collection: journal + index: + # this index is used to send updates to a logged in webmail user + name: user_limit_id + key: + user: 1 + _id: 1 + + - collection: journal + index: + # this index is used to find the latest journal entry + name: user_limit_id_reverse + key: + user: 1 + _id: -1 + + - collection: journal + # delete journal entries after 3 hours + index: + name: journal_autoexpire + expireAfterSeconds: 10800 + key: + created: 1 + + # Indexes for the threads collection + + - collection: threads + index: + name: thread_shard + key: + user: hashed + + - collection: threads + index: + name: thread + key: + user: 1 + ids: 1 + + - collection: threads + index: + name: thread_autoexpire + # autoremove thread indexes after 180 days of inactivity + expireAfterSeconds: 15552000 + key: + updated: 1 + + - collection: tasks + index: + name: task + key: + locked: 1 + lockedUntil: 1 diff --git a/lib/api/messages.js b/lib/api/messages.js index 694e0f5..9113431 100644 --- a/lib/api/messages.js +++ b/lib/api/messages.js @@ -1,7 +1,5 @@ 'use strict'; -// TODO: finish converting methods to async..await with ACL - const config = require('wild-config'); const log = require('npmlog'); const libmime = require('libmime'); @@ -20,7 +18,7 @@ const Maildropper = require('../maildropper'); const util = require('util'); const roles = require('../roles'); -module.exports = (db, server, messageHandler, userHandler) => { +module.exports = (db, server, messageHandler, userHandler, storageHandler) => { let maildrop = new Maildropper({ db, zone: config.sender.zone, @@ -1945,6 +1943,7 @@ module.exports = (db, server, messageHandler, userHandler) => { * @apiParam {Object[]} [headers] Custom headers for the message. If reference message is set then In-Reply-To and References headers are set automaticall y * @apiParam {String} headers.key Header key ('X-Mailer') * @apiParam {String} headers.value Header value ('My Awesome Mailing Service') + * @apiParam {String[]} [files] Attachments as storage file IDs. These attachments are also listed to message metaData.attachedFiles array * @apiParam {Object[]} [attachments] Attachments for the message * @apiParam {String} attachments.content Base64 encoded attachment content * @apiParam {String} [attachments.filename] Attachment filename @@ -2111,6 +2110,13 @@ module.exports = (db, server, messageHandler, userHandler) => { .empty('') .max(1024 * 1024), + files: Joi.array().items( + Joi.string() + .hex() + .lowercase() + .length(24) + ), + attachments: Joi.array().items( Joi.object().keys({ filename: Joi.string() @@ -2196,10 +2202,11 @@ module.exports = (db, server, messageHandler, userHandler) => { return next(); } + let metaData; if (result.value.metaData) { try { - let value = JSON.parse(result.value.metaData); - if (!value || typeof value !== 'object') { + metaData = JSON.parse(result.value.metaData); + if (!metaData || typeof metaData !== 'object') { throw new Error('Not an object'); } } catch (err) { @@ -2224,7 +2231,6 @@ module.exports = (db, server, messageHandler, userHandler) => { let date = result.value.date || new Date(); let mailboxData; - try { mailboxData = await db.database.collection('mailboxes').findOne({ _id: mailbox, @@ -2288,6 +2294,31 @@ module.exports = (db, server, messageHandler, userHandler) => { result.value.draft = true; // only draft messages can reference to another message } + if (result.value.files && result.value.files.length) { + for (let file of result.value.files) { + try { + let fileData = await storageHandler.get(userData._id, new ObjectID(file)); + if (fileData) { + if (!metaData) { + metaData = {}; + } + if (!metaData.attachedFiles) { + metaData.attachedFiles = []; + } + extraAttachments.push(fileData); + metaData.attachedFiles.push({ + id: fileData.id.toString(), + filename: fileData.filename, + contentType: fileData.contentType, + size: fileData.size + }); + } + } catch (err) { + log.error('API', 'STORAGEFAIL user=%s file=%s error=%s', userData._id, file, err.message); + } + } + } + let data = { from: result.value.from || { name: userData.name, address: userData.address }, date, @@ -2368,7 +2399,7 @@ module.exports = (db, server, messageHandler, userHandler) => { origin: result.value.ip || '127.0.0.1', transtype: 'UPLOAD', time: date, - custom: result.value.metaData || '', + custom: (metaData ? JSON.stringify(metaData) : result.value.metaData) || '', reference: referencedMessage ? { action: result.value.reference.action, @@ -2665,6 +2696,7 @@ module.exports = (db, server, messageHandler, userHandler) => { * @apiParam {String} user ID of the User * @apiParam {String} mailbox ID of the Mailbox * @apiParam {Number} message Message ID + * @apiParam {Boolean} deleteFiles If true then deletes attachment files listed in metaData.attachedFiles array * * @apiSuccess {Boolean} success Indicates successful response * @apiSuccess {String} queueId Message ID in outbound queue @@ -2677,7 +2709,9 @@ module.exports = (db, server, messageHandler, userHandler) => { * @apiExample {curl} Submit a Message: * curl -i -XPOST "http://localhost:8080/users/59fc66a03e54454869460e45/mailboxes/59fc66a13e54454869460e57/messages/1/submit" \ * -H 'Content-type: application/json' \ - * -d '{}' + * -d '{ + * "deleteFiles": true + * }' * * @apiSuccessExample {json} Submit Response: * HTTP/1.1 200 OK @@ -2713,6 +2747,9 @@ module.exports = (db, server, messageHandler, userHandler) => { .length(24) .required(), message: Joi.number().required(), + deleteFiles: Joi.boolean() + .truthy(['Y', 'true', 'yes', 'on', '1', 1]) + .falsy(['N', 'false', 'no', 'off', '0', 0, '']), sess: Joi.string().max(255), ip: Joi.string().ip({ version: ['ipv4', 'ipv6'], @@ -2743,6 +2780,7 @@ module.exports = (db, server, messageHandler, userHandler) => { let user = new ObjectID(result.value.user); let mailbox = new ObjectID(result.value.mailbox); let message = result.value.message; + let deleteFiles = result.value.deleteFiles; let userData; try { @@ -2796,6 +2834,13 @@ module.exports = (db, server, messageHandler, userHandler) => { return next(); } + let metaData; + try { + metaData = messageData.meta.custom ? JSON.parse(messageData.meta.custom) : false; + } catch (err) { + // ignore + } + let envelope = messageData.meta.envelope; if (!envelope) { // fetch envelope data from message headers @@ -2891,6 +2936,16 @@ module.exports = (db, server, messageHandler, userHandler) => { } } + if (deleteFiles && metaData && metaData.attachedFiles) { + for (let fileData of metaData.attachedFiles) { + try { + await storageHandler.delete(userData._id, new ObjectID(fileData.id)); + } catch (err) { + log.error('API', 'STORAGEDELFAIL user=%s file=%s error=%s', userData._id, fileData.id, err.message); + } + } + } + res.json(response); return next(); }) diff --git a/lib/api/storage.js b/lib/api/storage.js new file mode 100644 index 0000000..83d71e0 --- /dev/null +++ b/lib/api/storage.js @@ -0,0 +1,554 @@ +'use strict'; + +const Joi = require('../joi'); +const MongoPaging = require('mongo-cursor-pagination'); +const ObjectID = require('mongodb').ObjectID; +const tools = require('../tools'); +const roles = require('../roles'); + +module.exports = (db, server, storageHandler) => { + /** + * @api {post} /users/:user/storage Upload File + * @apiName UploadStorage + * @apiGroup Storage + * @apiDescription This method allows to upload an attachment to be linked from a draft + * @apiHeader {String} X-Access-Token Optional access token if authentication is enabled + * @apiHeaderExample {json} Header-Example: + * { + * "X-Access-Token": "59fc66a03e54454869460e45" + * } + * + * @apiParam {String} user ID of the User + * @apiParam {String} content Base64 encoded file content + * @apiParam {String} [filename] Filename + * @apiParam {String} [contentType] MIME type for the file + * @apiParam {String} [sess] Session identifier for the logs + * @apiParam {String} [ip] IP address for the logs + * + * @apiSuccess {Boolean} success Indicates successful response + * @apiSuccess {Object} id File ID + * + * @apiError error Description of the error + * + * @apiExample {curl} Upload a file: + * curl -i -XPOST "http://localhost:8080/users/5a2f9ca57308fc3a6f5f811d/storage" \ + * -H 'Content-type: application/json' \ + * -d '{ + * "content": "aGVsbG93IGZyb20=", + * "filename": "test.txt" + * }' + * + * @apiSuccessExample {json} Forward Response: + * HTTP/1.1 200 OK + * { + * "success": true, + * "id": "5a2f9ca57308fc3a6f5f811e" + * } + * + * @apiErrorExample {json} Error-Response: + * HTTP/1.1 200 OK + * { + * "error": "Database error" + * } + */ + server.post( + '/users/:user/storage', + tools.asyncifyJson(async (req, res, next) => { + res.charSet('utf-8'); + + const schema = Joi.object().keys({ + user: Joi.string() + .hex() + .lowercase() + .length(24) + .required(), + + filename: Joi.string() + .empty('') + .max(255), + contentType: Joi.string() + .empty('') + .max(255), + encoding: Joi.string() + .empty('') + .default('base64'), + content: Joi.string().required(), + + sess: Joi.string().max(255), + ip: Joi.string().ip({ + version: ['ipv4', 'ipv6'], + cidr: 'forbidden' + }) + }); + + const result = Joi.validate(req.params, schema, { + abortEarly: false, + convert: true + }); + + if (result.error) { + res.json({ + error: result.error.message, + code: 'InputValidationError' + }); + return next(); + } + + // permissions check + if (req.user && req.user === result.value.user) { + req.validate(roles.can(req.role).createOwn('storage')); + } else { + req.validate(roles.can(req.role).createAny('storage')); + } + + let user = new ObjectID(result.value.user); + + let userData; + try { + userData = await db.users.collection('users').findOne( + { + _id: user + }, + { + projection: { + address: true + } + } + ); + } catch (err) { + res.json({ + error: 'MongoDB Error: ' + err.message, + code: 'InternalDatabaseError' + }); + return next(); + } + if (!userData) { + res.json({ + error: 'This user does not exist', + code: 'UserNotFound' + }); + return next(); + } + + let id = await storageHandler.add(user, result.value); + + res.json({ + success: !!id, + id + }); + return next(); + }) + ); + + /** + * @api {get} /users/:user/storage List stored files + * @apiName GetStorage + * @apiGroup Storage + * @apiHeader {String} X-Access-Token Optional access token if authentication is enabled + * @apiHeaderExample {json} Header-Example: + * { + * "X-Access-Token": "59fc66a03e54454869460e45" + * } + * + * @apiParam {String} user ID of the User + * @apiParam {String} [query] Partial match of a filename + * @apiParam {Number} [limit=20] How many records to return + * @apiParam {Number} [page=1] Current page number. Informational only, page numbers start from 1 + * @apiParam {Number} [next] Cursor value for next page, retrieved from nextCursor response value + * @apiParam {Number} [previous] Cursor value for previous page, retrieved from previousCursor response value + * + * @apiSuccess {Boolean} success Indicates successful response + * @apiSuccess {Number} total How many results were found + * @apiSuccess {Number} page Current page number. Derived from page query argument + * @apiSuccess {String} previousCursor Either a cursor string or false if there are not any previous results + * @apiSuccess {String} nextCursor Either a cursor string or false if there are not any next results + * @apiSuccess {Object[]} results File listing + * @apiSuccess {String} results.id ID of the File + * @apiSuccess {String} results.filename Filename + * @apiSuccess {String} results.contentType Content-Type of the file + * @apiSuccess {Number} results.size File size + * + * @apiError error Description of the error + * + * @apiExample {curl} Example usage: + * curl -i http://localhost:8080/users/59fc66a03e54454869460e45/storage + * + * @apiSuccessExample {json} Success-Response: + * HTTP/1.1 200 OK + * { + * "success": true, + * "total": 1, + * "page": 1, + * "previousCursor": false, + * "nextCursor": false, + * "results": [ + * { + * "id": "59ef21aef255ed1d9d790e81", + * "filename": "hello.txt", + * "size": 1024 + * }, + * { + * "id": "59ef21aef255ed1d9d790e82", + * "filename": "finances.xls", + * "size": 2084 + * } + * ] + * } + * + * @apiErrorExample {json} Error-Response: + * HTTP/1.1 200 OK + * { + * "error": "Database error" + * } + */ + server.get( + '/users/:user/storage', + tools.asyncifyJson(async (req, res, next) => { + res.charSet('utf-8'); + + const schema = Joi.object().keys({ + user: Joi.string() + .hex() + .lowercase() + .length(24) + .required(), + query: Joi.string() + .trim() + .empty('') + .max(255), + limit: Joi.number() + .default(20) + .min(1) + .max(250), + next: Joi.string() + .empty('') + .mongoCursor() + .max(1024), + previous: Joi.string() + .empty('') + .mongoCursor() + .max(1024), + page: Joi.number().default(1), + sess: Joi.string().max(255), + ip: Joi.string().ip({ + version: ['ipv4', 'ipv6'], + cidr: 'forbidden' + }) + }); + + req.query.user = req.params.user; + const result = Joi.validate(req.query, schema, { + abortEarly: false, + convert: true, + allowUnknown: true + }); + + if (result.error) { + res.json({ + error: result.error.message, + code: 'InputValidationError' + }); + return next(); + } + + // permissions check + if (req.user && req.user === result.value.user) { + req.validate(roles.can(req.role).readOwn('storage')); + } else { + req.validate(roles.can(req.role).readAny('storage')); + } + + let user = new ObjectID(result.value.user); + + let userData; + try { + userData = await db.users.collection('users').findOne( + { + _id: user + }, + { + projection: { + address: true + } + } + ); + } catch (err) { + res.json({ + error: 'MongoDB Error: ' + err.message, + code: 'InternalDatabaseError' + }); + return next(); + } + if (!userData) { + res.json({ + error: 'This user does not exist', + code: 'UserNotFound' + }); + return next(); + } + + let query = result.value.query; + let limit = result.value.limit; + let page = result.value.page; + let pageNext = result.value.next; + let pagePrevious = result.value.previous; + + let filter = (query && { + 'metadata.user': user, + filename: { + $regex: query.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&'), + $options: '' + } + }) || { + 'metadata.user': user + }; + + let total = await db.gridfs.collection('storage.files').countDocuments(filter); + + let opts = { + limit, + query: filter, + paginatedField: 'filename', + sortAscending: true + }; + + if (pageNext) { + opts.next = pageNext; + } else if ((!page || page > 1) && pagePrevious) { + opts.previous = pagePrevious; + } + + let listing; + try { + listing = await MongoPaging.find(db.gridfs.collection('storage.files'), opts); + } catch (err) { + res.json({ + error: 'MongoDB Error: ' + err.message, + code: 'InternalDatabaseError' + }); + return next(); + } + + if (!listing.hasPrevious) { + page = 1; + } + + let response = { + success: true, + query, + total, + page, + previousCursor: listing.hasPrevious ? listing.previous : false, + nextCursor: listing.hasNext ? listing.next : false, + results: (listing.results || []).map(fileData => ({ + id: fileData._id.toString(), + filename: fileData.filename || false, + contentType: fileData.contentType || false, + size: fileData.length, + created: fileData.uploadDate.toISOString(), + md5: fileData.md5 + })) + }; + + res.json(response); + return next(); + }) + ); + + /** + * @api {delete} /users/:user/storage/:file Delete a File + * @apiName DeleteStorage + * @apiGroup Storage + * @apiHeader {String} X-Access-Token Optional access token if authentication is enabled + * @apiHeaderExample {json} Header-Example: + * { + * "X-Access-Token": "59fc66a03e54454869460e45" + * } + * + * @apiParam {String} user ID of the User + * @apiParam {String} address ID of the File + * + * @apiSuccess {Boolean} success Indicates successful response + * + * @apiError error Description of the error + * + * @apiExample {curl} Example usage: + * curl -i -XDELETE http://localhost:8080/users/59ef21aef255ed1d9d790e7a/storage/59ef21aef255ed1d9d790e81 + * + * @apiSuccessExample {json} Success-Response: + * HTTP/1.1 200 OK + * { + * "success": true + * } + * + * @apiErrorExample {json} Error-Response: + * HTTP/1.1 200 OK + * { + * "error": "Trying to delete main address. Set a new main address first" + * } + */ + server.del( + '/users/:user/storage/:file', + tools.asyncifyJson(async (req, res, next) => { + res.charSet('utf-8'); + + const schema = Joi.object().keys({ + user: Joi.string() + .hex() + .lowercase() + .length(24) + .required(), + file: Joi.string() + .hex() + .lowercase() + .length(24) + .required(), + sess: Joi.string().max(255), + ip: Joi.string().ip({ + version: ['ipv4', 'ipv6'], + cidr: 'forbidden' + }) + }); + + const result = Joi.validate(req.params, schema, { + abortEarly: false, + convert: true + }); + + if (result.error) { + res.json({ + error: result.error.message, + code: 'InputValidationError' + }); + return next(); + } + + let user = new ObjectID(result.value.user); + + // permissions check + if (req.user && req.user === result.value.user) { + req.validate(roles.can(req.role).deleteOwn('storage')); + } else { + req.validate(roles.can(req.role).deleteAny('storage')); + } + + let file = new ObjectID(result.value.file); + await storageHandler.delete(user, file); + + res.json({ + success: true + }); + return next(); + }) + ); + + /** + * @api {get} /users/:user/storage/:file Download File + * @apiName GetStorageFile + * @apiGroup Storage + * @apiDescription This method returns stored file contents in binary form + * @apiHeader {String} X-Access-Token Optional access token if authentication is enabled + * @apiHeaderExample {json} Header-Example: + * { + * "X-Access-Token": "59fc66a03e54454869460e45" + * } + * + * @apiParam {String} user ID of the User + * @apiParam {String} file ID of the File + * + * @apiError error Description of the error + * + * @apiExample {curl} Example usage: + * curl -i "http://localhost:8080/users/59fc66a03e54454869460e45/storage/59fc66a13e54454869460e57" + * + * @apiSuccessExample {text} Success-Response: + * HTTP/1.1 200 OK + * Content-Type: image/png + * + * <89>PNG... + * + * @apiErrorExample {json} Error-Response: + * HTTP/1.1 200 OK + * { + * "error": "This attachment does not exist" + * } + */ + server.get( + { name: 'storagefile', path: '/users/:user/storage/:file' }, + tools.asyncifyJson(async (req, res, next) => { + const schema = Joi.object().keys({ + user: Joi.string() + .hex() + .lowercase() + .length(24) + .required(), + file: Joi.string() + .hex() + .lowercase() + .length(24) + .required() + }); + + const result = Joi.validate(req.params, schema, { + abortEarly: false, + convert: true + }); + + if (result.error) { + res.json({ + error: result.error.message, + code: 'InputValidationError' + }); + return next(); + } + + // permissions check + if (req.user && req.user === result.value.user) { + req.validate(roles.can(req.role).readOwn('storage')); + } else { + req.validate(roles.can(req.role).readAny('storage')); + } + + let user = new ObjectID(result.value.user); + let file = new ObjectID(result.value.file); + + let fileData; + try { + fileData = await db.gridfs.collection('storage.files').findOne({ + _id: file, + 'metadata.user': user + }); + } catch (err) { + res.json({ + error: 'MongoDB Error: ' + err.message, + code: 'InternalDatabaseError' + }); + return next(); + } + + if (!fileData) { + res.json({ + error: 'This file does not exist', + code: 'FileNotFound' + }); + return next(); + } + + res.writeHead(200, { + 'Content-Type': fileData.contentType || 'application/octet-stream' + }); + + let stream = storageHandler.gridstore.openDownloadStream(file); + + stream.once('error', err => { + try { + res.end(err.message); + } catch (err) { + //ignore + } + }); + + stream.pipe(res); + }) + ); +}; diff --git a/lib/draft-handler.js b/lib/draft-handler.js deleted file mode 100644 index 76cbfc9..0000000 --- a/lib/draft-handler.js +++ /dev/null @@ -1,77 +0,0 @@ -'use strict'; - -// TODO: handle drafts - -/* - -{ - _id: "aaaaa", - user: "bbbbb", - - reference: 'message_id', - action: 'reply', - references: ['from-ref-message'], - inReplyTo: ['from-ref-message'], - - messageId: '', - date: date_obj, - - from: identity_ref, - to: [{name, address}], - cc: [{name, address}], - bcc: [{name, address}], - - subject: 'test', - html: '', - - attachments: [ - { - filename: 'aaa.jpg', - contentType: 'image/jpeg', - content: binary, - cid: 'only.for@embedded.images' - } - ] -} - - */ - -class DraftHandler { - constructor(options) { - this.database = options.database; - this.redis = options.redis; - } - - // should create a new Draft object and return ID - create(user, options, callback) { - options = options || {}; - callback(new Error('Future feature')); - } - - // should retrieve draft info - get(user, draft, callback) { - callback(new Error('Future feature')); - } - - // should add new attachment to draft and return attachment ID - addAttachment(user, draft, attachmentData, callback) { - callback(new Error('Future feature')); - } - - // should delete an attachment from a draft - deleteAttachment(user, draft, attachment, callback) { - callback(new Error('Future feature')); - } - - // should submit message to queue and delete draft - send(user, draft, envelope, callback) { - callback(new Error('Future feature')); - } - - // should cancel the draft and delete contents - discard(user, draft, callback) { - callback(new Error('Future feature')); - } -} - -module.exports = DraftHandler; diff --git a/lib/storage-handler.js b/lib/storage-handler.js new file mode 100644 index 0000000..a8a7b42 --- /dev/null +++ b/lib/storage-handler.js @@ -0,0 +1,140 @@ +'use strict'; + +const GridFSBucket = require('mongodb').GridFSBucket; +const libbase64 = require('libbase64'); +const libmime = require('libmime'); + +class StorageHandler { + constructor(options) { + this.database = options.database; + this.gridfs = options.gridfs || options.database; + this.users = options.users || options.database; + this.bucketName = 'storage'; + + this.gridstore = new GridFSBucket(this.gridfs, { + bucketName: this.bucketName, + chunkSizeBytes: 255 * 1024 + }); + } + + add(user, options) { + return new Promise((resolve, reject) => { + let filename = options.filename; + let contentType = options.contentType; + + let filebase = 'upload-' + new Date().toISOString().substr(0, 10); + if (!contentType && !filename) { + filename = filebase + '.bin'; + contentType = 'application/octet-stream'; + } else if (!contentType) { + contentType = libmime.detectMimeType(filename) || 'application/octet-stream'; + } else { + filename = filebase + '.' + libmime.detectExtension(contentType); + } + + let store = this.gridstore.openUploadStream(filename, { + contentType, + metadata: { + user + } + }); + + store.on('error', err => { + reject(err); + }); + + store.once('finish', () => { + resolve(store.id); + }); + + let decoder = new libbase64.Decoder(); + decoder.pipe(store); + + decoder.once('error', err => { + // pass error forward + store.emit('error', err); + }); + + try { + decoder.end(options.content); + } catch (err) { + return reject(err); + } + }); + } + + get(user, file) { + return new Promise((resolve, reject) => { + this.gridfs.collection('storage.files').findOne( + { + _id: file, + 'metadata.user': user + }, + (err, fileData) => { + if (err) { + return reject(err); + } + if (!fileData) { + let err = 'This file does not exist'; + err.code = 'FileNotFound'; + return reject(err); + } + let stream = this.gridstore.openDownloadStream(file); + let chunks = []; + let chunklen = 0; + + stream.once('error', err => { + reject(err); + }); + + stream.on('readable', () => { + let chunk; + while ((chunk = stream.read()) !== null) { + chunks.push(chunk); + chunklen += chunk.length; + } + }); + + stream.once('end', () => { + resolve({ + id: fileData._id, + filename: fileData.filename, + contentType: fileData.contentType, + size: fileData.length, + content: Buffer.concat(chunks, chunklen) + }); + }); + } + ); + }); + } + + delete(user, file) { + return new Promise((resolve, reject) => { + this.gridfs.collection('storage.files').findOne( + { + _id: file, + 'metadata.user': user + }, + (err, fileData) => { + if (err) { + return reject(err); + } + if (!fileData) { + let err = 'This file does not exist'; + err.code = 'FileNotFound'; + return reject(err); + } + this.gridstore.delete(file, err => { + if (err) { + return reject(err); + } + return resolve(); + }); + } + ); + }); + } +} + +module.exports = StorageHandler; diff --git a/package.json b/package.json index e201875..1fb5bd4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wildduck", - "version": "1.15.2", + "version": "1.16.0", "description": "IMAP/POP3 server built with Node.js and MongoDB", "main": "server.js", "scripts": { @@ -22,7 +22,7 @@ "eslint": "5.15.3", "eslint-config-nodemailer": "1.2.0", "eslint-config-prettier": "4.1.0", - "grunt": "1.0.3", + "grunt": "1.0.4", "grunt-cli": "1.3.2", "grunt-eslint": "21.0.0", "grunt-mocha-test": "0.13.3", @@ -41,14 +41,14 @@ "gelf": "2.0.1", "generate-password": "1.4.1", "he": "1.2.0", - "html-to-text": "4.0.0", + "html-to-text": "5.0.0", "humanname": "0.2.2", "iconv-lite": "0.4.24", "ioredfour": "1.0.2-ioredis-02", - "ioredis": "4.6.2", + "ioredis": "4.9.0", "isemail": "3.2.0", "joi": "14.3.1", - "js-yaml": "3.12.2", + "js-yaml": "3.13.0", "key-fingerprint": "1.1.0", "libbase64": "1.0.3", "libmime": "4.0.1", @@ -56,10 +56,10 @@ "mailsplit": "4.2.4", "mobileconfig": "2.2.0", "mongo-cursor-pagination": "7.1.0", - "mongodb": "3.1.13", + "mongodb": "3.2.2", "mongodb-extended-json": "1.10.1", "node-forge": "0.8.2", - "nodemailer": "5.1.1", + "nodemailer": "6.0.0", "npmlog": "4.1.2", "openpgp": "4.4.10", "pem": "1.14.2",