Configuring preferences and options in Outlook.com
I understand the frustration. Your configuration isn’t wrong, the error happens because Outlook.com accounts (even paid Microsoft 365 Personal ones) no longer support SMTP AUTH.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi, I created a new account on outlook in february 2026. When I try to setup this account on an email client on my phone (K9) which uses OAuth I can access IMAP or POP, but can't access SMTP. I get: SmtpClientAuthentication is disabled for the Mailbox. Visit https://aka.ms/smtp_auth_disabled for more information.
This is a Microsoft 365 Basic account (not a "free" one). Is SMTP enabled for these accounts? The client I use is able to connect fine to an older account I have with @outlook.com that is free (not basic). So it is not a problem with the email client, but with the account itself.
Configuring preferences and options in Outlook.com
I understand the frustration. Your configuration isn’t wrong, the error happens because Outlook.com accounts (even paid Microsoft 365 Personal ones) no longer support SMTP AUTH.
Still the same even with the full subscription(still blocked on server side for Security purposes) Only Business or Enterprise accounts support SMTP AUTH.
You can check and try this if it will work. (Update you K-9 settings)
If you only see POP and IMAP options and no Authenticated SMTP option in Outlook.com, then your mailbox has SMTP AUTH disabled with no user toggle available. This is common for new accounts created in 2025–2026, including those with Microsoft 365 Basic.
Hi!
Welcome to Microsoft Q&A forum.
Based on your information, for many new Outlook.com mailboxes, Microsoft disables SMTP AUTH by default for security reasons. Some clients like K‑9 Mail require SMTP AUTH to send mail, so sending fails even though receiving works.
Try this one first to check if the settings is available.
Go to: https://outlook.live.com/mail/
Go to Mail → Sync email
Look for Authenticated SMTP
Enable Turn on SMTP AUTH
If the option exists, turn it ON, save, and retry sending.
AI answer
SMTP is available for Outlook.com / Microsoft 365 consumer mailboxes, including new accounts, but it can be disabled at the service side. The error message “SmtpClientAuthentication is disabled for the Mailbox” indicates that SMTP AUTH is currently disabled for that mailbox or tenant, not that the Microsoft 365 Basic subscription type blocks SMTP.
For Exchange Online/Outlook.com mailboxes, SMTP can be disabled either:
Get-TransportConfig | Select SmtpClientAuthenticationDisabled
False = SMTP AUTH is not disabled tenant-wide.True = SMTP AUTH is disabled for the whole tenant. Set-TransportConfig -SmtpClientAuthenticationDisabled $False
Get-EXOCasMailbox <mailbox account> -Properties SmtpClientAuthenticationDisabled | Select SmtpClientAuthenticationDisabled
False = SMTP AUTH is enabled for this mailbox (overrides tenant setting).True = SMTP AUTH is disabled for this mailbox. Set-CasMailbox <mailbox account> -SmtpClientAuthenticationDisabled $False
If SMTP AUTH is disabled at either level, OAuth-capable clients such as K-9 will fail to send mail via SMTP even though IMAP/POP with OAuth works.
If direct PowerShell access to the tenant is not available (for example, for a purely consumer Outlook.com account), this needs to be corrected by Microsoft on the service side; in that case, contact Outlook.com/Microsoft 365 consumer support and provide the exact error text so they can re-enable SMTP AUTH for the mailbox.
Note that Basic authentication is being deprecated across Outlook.com and Exchange Online. For POP/IMAP/SMTP, OAuth 2.0 is supported and should be used, as in the K-9 configuration.
References: