Microsoft says basic authentication will be disabled on Office365 in October 2020. Looking at Email::Folder::Exchange, it doesn't say if it uses basic authentication or not. I assumed it did though, and if you pry into the soap object from Email::Folder::Exchange:EWS, it seems that it does:
use warnings; use strict; use Email::Folder::Exchange::EWS; use Data::Dumper; my $folder = Email::Folder::Exchange::EWS->new('https://outlook.office +365.com', 'myemail@address.com', 'mysupersecurepassword'); print Dumper $folder->soap();
snippit of results:
'basic_authentication' => { 'outlook.office365.com:443' => { '' => [ 'myemail@address.com', 'mysupersecurepassword' ] } },
Where can we go to see if any changes to the module are in the works? I have several instances of this module in production use and I'm hoping not to have to rewrite them too much.

In reply to Email::Folder::Exchange and basic authentication by TieUpYourCamel

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.