An Azure service that provides an integrated environment for bot development.
Hello Eric Richards,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you're having failures sending messages back to users starting chats with bots from Microsoft Teams.
The failure originated from a temporary Microsoft Teams service‑side disruption affecting the Bot Framework Connector endpoint (smba.trafficmanager.net), preventing outbound bot messages while inbound messages continued to flow normally.
Since this type of connector degradation is not remediable through configuration or code changes, the correct approach is to validate service health, avoid modifying bot settings, apply temporary fallbacks, and resume normal operations once Microsoft completes restoration. This ensures operational continuity while adhering to Microsoft’s recommended recovery practices for Teams bot reliability.
The remediation steps below will help you to fix the issue:
- Use the Microsoft 365 Admin Center service‑health portal and Microsoft’s public service‑status page to confirm active Teams‑related incidents impacting bot delivery. Microsoft 365 Service Health, and Microsoft Service Status
- Check whether outbound calls to the Microsoft‑managed Teams connector endpoint fail:
https://smba.trafficmanager.net/Common failure signals include 502, 504, or repeated socket timeouts. These conditions indicate platform‑side faults as defined in Microsoft Bot Connector networking documentation. - https://learn.microsoft.com/azure/bot-service/bot-service-resources-connectors> - Do not regenerate secrets, modify Teams channel settings, or redeploy manifests. The inbound path functioning correctly confirms your bot configuration is intact. - https://learn.microsoft.com/microsoftteams/platform/bots/how-to/connect-bot-to-teams
- Use a soft‑failure response when outbound delivery fails: "Teams is currently experiencing delivery delays. Please try again shortly." If available in your architecture, route critical interactions through Direct Line or Web Chat, which operate independently of the Teams connector. - https://learn.microsoft.com/azure/bot-service/bot-service-channel-directline Also record outbound delivery failures for later reconciliation:
Log(serviceUrl, conversationId, httpStatus, timestamp) - Because connector outages are Microsoft‑side service incidents, remediation is completed solely by Microsoft engineering. Monitor service‑health notifications until recovery is published, you have to wait.
- After Microsoft resolves the incident:
- Send proactive bot messages.
- Confirm replies in Teams chats succeed.
- Verify updated serviceUrl values in Activities.
- Ensure 200 OK responses from smba.trafficmanager.net.
I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.