Allow Email node to select folder other than INBOX

Closes #215
Thanks to @aamol for spotting
This commit is contained in:
Dave Conway-Jones 2016-06-27 12:01:19 +01:00
parent 46cc9bb906
commit 4c589f14f5
1 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ module.exports = function(RED) {
node.status({fill:"blue", shape:"dot", text:"email.status.fetching"});
//console.log("> ready");
// Open the inbox folder
imap.openBox('INBOX', // Mailbox name
imap.openBox(node.box, // Mailbox name
false, // Open readonly?
function(err, box) {
//console.log("> Inbox open: %j", box);