我遇到了node.js(版本8.9.1)libary imap的问题。如果我向函数发送请求
getMails: function (req, res) {
var body = req.body
, parser = new MailParser();
if(body.encryptedSecret !== undefined) {
User.findOne({"email": req.user.email}, function (err, user) {
var mailAccount = user.mailAccounts[0]
, imap = new Imap({
user: mailAccount.imap_user,
password: mailAccount.imap_pass,
host: mailAccount.imap_host,
port: mailAccount.imap_port,
tls: true
});
getMailsFromServer(parser, imap, res)
});
} else {
response.error(res, '400', '2-7')
}
}
我得到了回复
{
"message": "error",
"internalErrrorCode": "2-9",
"data": {
"type": "bad",
"source": "protocol"
}
}
我的getMailsFromServer函数是:
imap.once('ready', function () {
imap.openBox('INBOX', true, function (err, box) {
if (err) throw err;
imap.search([ 'UNSEEN', ['SINCE', 'May 20, 2017'] ], function(err, results) {
var f = imap.seq.fetch(results, { bodies: '' });
f.on('message', function (msg, seqno) {
msg.on('body', function (stream, info) {
stream.on('data', function (chunk) {
parser.write(chunk.toString("utf8"));
})
})
msg.once('end', function () {
parser.end();
});
})
f.once('error', function (err) {
error = true
response.error(res, 500, '2-9', err)
});
f.once('end', function () {
if (!error) {
parser.on('data', function (data) {
response.success(res, data.html)
});
console.log('Done fetching all messages!');
imap.end();
}
});
})
})
})
如果我删除了imap.search并将var f = imap.seq.fetch(results
设置为例如var f = imap.seq.fetch( box.messages.total + ':*'
,则请求有效。
您可以在GitHub
谢谢, 为了你的帮助
答案 0 :(得分:1)
对于搜索,日期必须采用特定格式,详见RFC 3501:
d-MON-YYYY
d
:是一个月中的一位或两位数字
MON
:是以下三个字母缩写之一:Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
YYYY
:是一个四位数的年份。
示例:2017年1月3日,1998年3月1日至1998年6月22日。
我对此不太了解,因为我不熟悉node.js和这个库,但您可能还需要将[ 'UNSEEN', ['SINCE', 'May 20, 2017'] ]
折叠成一个数组;没有必要嵌套它们。 [ 'UNSEEN', 'SINCE', 'May 20, 2017']