Does Logstash8.0 support modern authentication to access Outlook with token?

input {
    imap {
        host => "outlook.office365.com"
        user => "$USER"
        password => "$PASSWORD"
        port => $PORT
        folder => "Inbox"
    }
}

Currently I'm using username/password way to pulling mails from mailbox per the documentation. Just wanna ask dose Logstash support using tokens to access Outlook?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.