Exchange Web Services client library v1.10.0 Release Notes

    • 🚚 Removed the verify_ssl argument to Account, discover and Configuration. If you need to disable TLS verification, register a custom HTTPAdapter class. A sample adapter class is provided for convenience:

      from exchangelib.protocol import BaseProtocol, NoVerifyHTTPAdapter
      BaseProtocol.HTTP_ADAPTER_CLS = NoVerifyHTTPAdapter