and this message appears even f we dont have Outlook or Hotmail
Hi @ampluswp,
The error popup should only occur if youβre using Microsoft 365 or Outlook related hosts with the Other SMTP mailer setting. Could you please check if this is how your mailer connection is set up? Would you please share with us the SMTP host that you have set up the mailer connection with? This will give us an idea of what might be happening.
Iβve shared this issue with our development team, and theyβre looking into it. In the meantime, you can dismiss the popup by adding the following snippet.
add_action( 'admin_init', function() {
if ( is_user_logged_in() ) {
update_user_meta( get_current_user_id(), 'easy_wp_smtp_microsoft_basic_auth_deprecation_general_notice_dismissed', true );
}
} );
Please try this and let me know if it helps.
Using Other Mail, I connect to Microsoft 365 using TLS 1.3
TLS 1.3 is supported by Microsoft.
I too would like to disable the annoying Popup
Hey @ewgny,
Thanks for getting in touch, and to confirm, the snippet shared would allow you to hide the popup such that it will not show up anymore on your dashboard.
However, with that said, Iβd like to confirm that the popup points to a change by Microsoft affecting all mailer connections using non-modern authentication methods. This includes all connections done through the Other SMTP mailer, as in your case.
In case it helps to share and as a workaround, you can consider checking out and setting up the mailer connection with any of the other supported mailer options.
Thanks.
Hey Patrick @paddyam
Sorry for the late reply. In my case, the customer did have Office365. I was 100% sure that was not the case. So sorry for my wrong post.
Many thanks
Jonas