mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-28 11:14:46 +08:00
updated message upload API
This commit is contained in:
parent
432b99a602
commit
da24adb980
5 changed files with 21 additions and 9 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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-02-12T11:45:02.351Z",
"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-02-26T12:32:31.900Z",
"url": "http://apidocjs.com",
"version": "0.17.7"
}
});
|
||||
|
|
|
@ -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-02-12T11:45:02.351Z",
"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-02-26T12:32:31.900Z",
"url": "http://apidocjs.com",
"version": "0.17.7"
}
}
|
||||
|
|
|
@ -1955,7 +1955,7 @@ module.exports = (db, server, messageHandler, userHandler) => {
|
|||
* @apiParam {String} reference.mailbox Mailbox ID
|
||||
* @apiParam {Number} reference.id Message ID in Mailbox
|
||||
* @apiParam {String} reference.action Either <code>reply</code>, <code>replyAll</code> or <code>forward</code>
|
||||
* @apiParam {Boolean} reference.attachments=false If true, then also adds attachments from the original message
|
||||
* @apiParam {String[]} reference.attachments=false If true, then includes all attachments from the original message. If it is an array of attachment ID's includes attachments from the list
|
||||
* @apiParam {String} [sess] Session identifier for the logs
|
||||
* @apiParam {String} [ip] IP address for the logs
|
||||
*
|
||||
|
@ -2144,10 +2144,18 @@ module.exports = (db, server, messageHandler, userHandler) => {
|
|||
action: Joi.string()
|
||||
.valid('reply', 'replyAll', 'forward')
|
||||
.required(),
|
||||
attachments: Joi.boolean()
|
||||
.truthy(['Y', 'true', 'yes', 'on', '1', 1])
|
||||
.falsy(['N', 'false', 'no', 'off', '0', 0, ''])
|
||||
.default(false)
|
||||
attachments: Joi.alternatives().try(
|
||||
Joi.boolean()
|
||||
.truthy(['Y', 'true', 'yes', 'on', '1', 1])
|
||||
.falsy(['N', 'false', 'no', 'off', '0', 0, '']),
|
||||
Joi.array()
|
||||
.items(
|
||||
Joi.string()
|
||||
.regex(/^ATT\d+$/i)
|
||||
.uppercase()
|
||||
)
|
||||
.allow([])
|
||||
)
|
||||
}),
|
||||
|
||||
sess: Joi.string().max(255),
|
||||
|
@ -3566,6 +3574,10 @@ module.exports = (db, server, messageHandler, userHandler) => {
|
|||
// skip embedded images
|
||||
continue;
|
||||
}
|
||||
if (Array.isArray(options.reference.attachments) && !options.reference.attachments.includes(attachment.id)) {
|
||||
// skip attachments not listed in the API call
|
||||
continue;
|
||||
}
|
||||
|
||||
try {
|
||||
let attachmentId = messageData.mimeTree.attachmentMap && messageData.mimeTree.attachmentMap[attachment.id];
|
||||
|
|
Loading…
Reference in a new issue