GithubHelp home page GithubHelp logo

Comments (5)

baranbbr avatar baranbbr commented on July 18, 2024

This looks correct, check your credentials and lastly Outlook have updated their website with IMAP connection errors, maybe this could help?

https://support.microsoft.com/en-us/topic/d088b986-291d-42b8-9564-9c414e2aa040

from node-imap.

henryp0p avatar henryp0p commented on July 18, 2024

It looks like Outlook has recently stopped supporting Basic Auth through IMAP
https://learn.microsoft.com/en-us/exchange/troubleshoot/administration/cannot-connect-mailbox-pop-imap-outlook

I think this might be the cause of the error.

from node-imap.

henryp0p avatar henryp0p commented on July 18, 2024

@baranbbr thanks, I've read through their docs on this and enabled IMAP in the account so it doesn't look like this explains it

from node-imap.

shailendra-fxbytes avatar shailendra-fxbytes commented on July 18, 2024

It looks like Outlook has recently stopped supporting Basic Auth through IMAP https://learn.microsoft.com/en-us/exchange/troubleshoot/administration/cannot-connect-mailbox-pop-imap-outlook

I think this might be the cause of the error.

hello @henryp0p i have check the document and yes basic auth is disabled now so i have tried it with auth2.0 and adding token like this

const mailId = 'sstest**@******.com';
const token =
'eyJ0eXAiOiJKV1QiLCJub25jZSI6ImRvd3R0S2draG1fVGN1T1g3S1p................';
const auth2 = btoa('user=' + mailId + '^Aauth=Bearer ' + token + '^A^A');

var imap = new Imap({
xoauth2: auth2,
host: 'outlook.office365.com',
port: 993,
tls: true,
debug: console.log,
authTimeout: 25000,
connTimeout: 30000,
tlsOptions: {
rejectUnauthorized: false,
servername: 'outlook.office365.com'
}
});

But now it gives error - IMAP Server Error Error: No supported authentication method(s) available. Unable to login.

Can you help me with this error. My project is already using your plugin and if it not worked i have to make all the things custom and which take too much time.

Waiting for your positive response.

from node-imap.

henryp0p avatar henryp0p commented on July 18, 2024

it's been disabled now so as far as I understand you would have to change your email provider or create an Azure app with outlook access. Good luck

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.