GithubHelp home page GithubHelp logo

Delete email messages about node-imap HOT 7 CLOSED

mscdex avatar mscdex commented on July 17, 2024
Delete email messages

from node-imap.

Comments (7)

mscdex avatar mscdex commented on July 17, 2024 1

Oops, overlooked the part where you were adding the flag. Here's the simplest way to delete a message and then log out:

imap.addFlags(req.params.id, 'Deleted', function(err) {
  if (err) return cb(err);
  imap.closeBox(function(err) {
    if (err) return cb(err);
    imap.logout(cb);
  });
});

from node-imap.

mscdex avatar mscdex commented on July 17, 2024

You should be closing the box first before logging out.

from node-imap.

AndreLigeiro avatar AndreLigeiro commented on July 17, 2024

I try that but it not works. Any other suggestion?

from node-imap.

AndreLigeiro avatar AndreLigeiro commented on July 17, 2024

Thanks a lot. :)

from node-imap.

bitraft avatar bitraft commented on July 17, 2024

I use the node 0.10.5 , [email protected]. yahoo email ssl:993. get this error:

Error: The flag "Deleted" is not allowed by the server for this mailbox

from node-imap.

bitraft avatar bitraft commented on July 17, 2024

imap._state.box.permFlags is empty.

from node-imap.

aaronbriel avatar aaronbriel commented on July 17, 2024

@AndreLigeiro Would it be possible to show how you initialized 'req' here? I'm trying to achieve something similar but I'm unsure of what object would have the params.id. I do a call like 'f.on('message', function(msg, seqno) {' but msg doesn't seem to have it. I'm trying to build off of the example listed in https://github.com/mscdex/node-imap

Thanks!!

from node-imap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.